Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi,
I am trying to add 3 measures together from 3 seperate cards, however the Dax formula isn't giving me to correct answer. I belive it is to do with the slicers and ineratctions however I can't crack the answer! Unfortunaty the data is sensitive so I cant share the file but I will share some screen shots and what I have tried!
I need to add together the Net revenue/ head for option 2, 3 and 4 to compare to option 1.
DAX Formula that I have tried:
I have also tried:
Net Rev / hd comp = SUMX(VALUES('Table', ( [Net Revenue / Head 2]) + [Net Revenue / Head 3] +[Net Revenue / Head 4]))
Total Net Revenue / Head option 2 = VALUE([Net Revenue / Head 2] + VALUE([Net Revenue / Head 3] + VALUE ([Net Revenue / Head 4])))
Hi, Thanks for helping. My answer is now (blank)
@KateD , Values need ac groping column
try
SUMX('Table', ( [Net Revenue / Head 2]) + [Net Revenue / Head 3] +[Net Revenue / Head 4])
or
SUMX(values('Table'[Revenue Head]), ( [Net Revenue / Head 2]) + [Net Revenue / Head 3] +[Net Revenue / Head 4])
Change column in bold with correct column
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
105 | |
99 | |
99 | |
38 | |
37 |
User | Count |
---|---|
156 | |
121 | |
73 | |
73 | |
63 |