Forum Discussion
DAX Calculation help
- 9 months ago
Anonymous , Please try
Class (measure) =
VAR acct = SELECTEDVALUE('Table1'[Account Code]) // or MAX('Table1'[Account Code]) if appropriate
VAR ttype = SELECTEDVALUE('Table2'[Type])
RETURN
SWITCH(
TRUE(),
acct = "1020", "Fine",
acct = "1060", "Fine",
ttype = "listing", "Normal",
"Up-normal"
)
If this does not help
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
I've used DAX Function = Result have Normal and Up-normal as not executed 'Fine'
Thanks
Anonymous , Please try
Class (measure) =
VAR acct = SELECTEDVALUE('Table1'[Account Code]) // or MAX('Table1'[Account Code]) if appropriate
VAR ttype = SELECTEDVALUE('Table2'[Type])
RETURN
SWITCH(
TRUE(),
acct = "1020", "Fine",
acct = "1060", "Fine",
ttype = "listing", "Normal",
"Up-normal"
)
If this does not help
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
- v-priyankata9 months agoCommunity Support
Hi Anonymous
Thank you for reaching out to the Microsoft Fabric Forum Community.
amitchandak Thanks for the inputs.
I hope the information provided by user was helpful. If you still have questions, please don't hesitate to reach out to the community.
- v-priyankata9 months agoCommunity Support
Hi Anonymous
Hope everything’s going smoothly on your end. I wanted to check if the issue got sorted. if you have any other issues please reach community.