Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
I created measure in Table 1 as not executing as result
both table have relationship as not executing '1070 code should normal in 'class' please look into DAX Formula and suggest.
Result
desc class type
1020 fine no
1060 fine no
1070 up-normal listing
1080 up-normal no
Class = SWITCH(TRUE(),
'Table1'[Account Code]="1020","Fine",
'Table1'[Account Code]="1600","Fine",
SELECTEDVALUE('Table2'[Type])="listing","Normal","Up-normal")
Solved! Go to Solution.
@RajK2 , 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.
@RajK2 , if this is a measure
Try like
Class = SWITCH(TRUE(),
max('Table1'[Account Code])="1020","Fine",
max('Table1'[Account Code])="1600","Fine",
SELECTEDVALUE('Table2'[Type])="listing","Normal","Up-normal")
I've used DAX Function = Result have Normal and Up-normal as not executed 'Fine'
Thanks
@RajK2 , 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.
Hi @RajK2
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.
Hi @RajK2
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.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 44 | |
| 43 | |
| 38 | |
| 18 | |
| 16 |
| User | Count |
|---|---|
| 67 | |
| 63 | |
| 30 | |
| 30 | |
| 23 |