c_last_twelve_months_revenue_per_share#

c_last_twelve_months_revenue_per_share(c_last_twelve_months_revenue, fis_weighted_average_basic_shares_outstanding)[source]

Calculate the last twelve months revenue per share, using weighted average basic shares outstanding.

Parameters:
  • c_last_twelve_months_revenue (DataColumn) – The last twelve months revenue.

  • fis_weighted_average_basic_shares_outstanding (DataColumn) – The weighted average basic shares outstanding.

Returns:

The last twelve months revenue per share.

Return type:

DataColumn

Notes

Revenue per share is calculated as:

\[\mathrm{Revenue\ Per\ Share} = \frac{\mathrm{LTM\ Revenue}} {\mathrm{Weighted\ Average\ Basic\ Shares\ Outstanding}}\]

In Excel, assuming LTM revenue in column A and shares outstanding in column B (starting at cell A2):

  1. In cell C2, enter:

    =A2/B2
    
  2. Drag the formula down to apply to subsequent rows.