Forum Discussion
Augustas-ase
3 years agoHelper II
Formula
how to calculate and get percentages in a column?
Augustas-ase
3 years agoHelper II
2Sale2s =
VAR _total = sum('Planam'[Sales])
var _val = 'Planam'[Sales]
return
_val/_total
should also be added here
Augustas-ase
3 years agoHelper II
can you write how to have be?
- BIswajit_Das3 years agoImpactful Individual
Try this out
2Sale2s =
VAR _total =Calculate(
SUM('Planam'[Sales]),
Filter('Planam','Planam'[month] = Earlier('Planam'[month])))
var _val = 'Planam'[Sales]
return
_val/_total