Forum Discussion
TimmK
Helper IV
4 years agoProfitbase Income Statement Percentage
I use the visual "Financial Reporting Matrix by Profitbase" to create an income statement with custom rows. The measures I use are Amount and %. The % is the amount of the specific year compared to t...
amitchandak
Super User
4 years agoTimmK , Can you share % formula
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
TimmK
Helper IV
4 years agoYes, here is the % measure:
% =
DIVIDE(
CALCULATE(
[Sales],
ALL('Date'[Date].[Year]),
'Date'[Year]=YEAR(TODAY())
),
[Sales],
0
)
-1