Forum Discussion
Augustas-ase
3 years agoHelper II
Formula
how to calculate and get percentages in a column?
BIswajit_Das
3 years agoImpactful Individual
Sales =
VAR _total =
Calculate(
SUM('Planam'[Sales 2022]),
Filter('Planam','Planam'[month] = Earlier('Planam'[month]))
)
RETURN _total
try this out
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-ase3 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