Forum Discussion
Augustas-ase
3 years agoHelper II
Formula
how to calculate and get percentages in a column?
BIswajit_Das
3 years agoImpactful Individual
Hello Augustas-ase, So you want the percentage to calculated by each month!!!
Augustas-ase
3 years agoHelper II
yes
- BIswajit_Das3 years agoImpactful Individual
You can do that by
Modify your formula to
calculate (expression,
filter(table,table[monthcol] = eariler(table[monthcol]))
)- Augustas-ase3 years agoHelper II
what should it look like when you put it in this formula?
Sales =VAR _total = sum('Planam'[Sales 2022])return_total- BIswajit_Das3 years agoImpactful Individual
Sales =
VAR _total =
Calculate(SUM('Planam'[Sales 2022]),
Filter('Planam','Planam'[month] = Earlier('Planam'[month])))
RETURN _total
try this out