Forum Discussion
TimmK
4 years agoHelper IV
Profitbase 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
4 years agoSuper User
TimmK , Can you share % formula
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
- TimmK4 years agoHelper IV
Yes, here is the % measure:
% =
DIVIDE(
CALCULATE(
[Sales],
ALL('Date'[Date].[Year]),
'Date'[Year]=YEAR(TODAY())
),
[Sales],
0)
-1