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 here's something that may be helpfull
Augustas-ase
3 years agoHelper II
or how can i multiply this? sales 2022 x %ct sales 2022
- BIswajit_Das3 years agoImpactful Individual
For any calculations you need to use calculated columns or measure
- Augustas-ase3 years agoHelper II
how to calculate measure? then for example, Sales 2022 value: cow is 544,385, and how to measure i can get percentage 43,06?
- BIswajit_Das3 years agoImpactful Individual
You got a column sales 2022 with value 544,385
Then you have a create an other calculated column for to get 43.06%
Formula for the column is :-
#column =
VAR _total = SUM([Sales 2022])
VAR _val = [Sales 2022]
RETURN
ROUND((_val / _total)*100,2)
then later you can use the #column For other calculations