Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
I have data in the below format with the columns 'Metric', 'Actual Value' and 'Metric Format'. Based on the column 'Metric Format', I would like to populate the column 'Desired Outcome' in the visual (matrix) in the output.
Input:
| Metric | Actual Value | Metric Format |
| A | 0.88 | 0% |
| B | 2497 | #,##0 |
| C | 435 | $#,##0 |
Output:
| Metric | Desired Outcome |
| A | 88% |
| B | 2,497 |
| C | $435 |
An ex-employee was able to do this and I am trying to figure out where the settings need to change. Would appreciate if anyone can help.
Solved! Go to Solution.
The below code worked:
Desired Outcome = if( Not(ISERROR(value('TableName'[Actual Value]))), format(value('TableName'[Actual Value]),'TableName'[Metric Format]),'TableName'[Actual Value])
The below code worked:
Desired Outcome = if( Not(ISERROR(value('TableName'[Actual Value]))), format(value('TableName'[Actual Value]),'TableName'[Metric Format]),'TableName'[Actual Value])
Hello there @Rohini ! Check if this works for you:
Desired Outcome =
VAR _current_row =
SELECTEDVALUE ( 'Your Table'[Actual Value] )
RETURN
SWITCH (
_current_row,
"0%", FORMAT ( _current_row, "Percent" ),
"#,##0", FORMAT ( _current_row, "#,0" ),
"#,##0", FORMAT ( _current_row, "$#,0" )
)
Hope this answer solves your problem!
If you need any additional help please @ me in your reply.
If my reply provided you with a solution, please consider marking it as a solution ✔️ or giving it a kudoe 👍
Thanks!
You can also check out my LinkedIn!
Best regards,
Gonçalo Geraldes
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 27 | |
| 23 | |
| 18 | |
| 18 | |
| 15 |
| User | Count |
|---|---|
| 54 | |
| 44 | |
| 42 | |
| 39 | |
| 36 |