This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
I have a table that is transponsed from Rows to Column to Colum to Rows. Is it possible to change data type on specific rows from a transposed table.
Here is the transposed table:
Thank you
Solved! Go to Solution.
Hi @Anonymous ,
Please refer to my pbix to see if it helps you.
Create two measures.
2022/01 =
VAR small_0 =
IF (
MAX ( 'Table'[2022/January] ) < 1,
FORMAT ( MAX ( 'Table'[2022/January] ), "percent" ),
MAX ( 'Table'[2022/January] )
)
VAR _large_0 =
IF (
MAX ( 'Table'[2022/January] ) > 1,
FORMAT ( MAX ( 'Table'[2022/January] ), "0.0000" ),
MAX ( 'Table'[2022/January] )
)
RETURN
IF ( MAX ( 'Table'[2022/February] ) < 1, small_0, _large_0 )
2022/02 =
VAR small_0 =
IF (
MAX ( 'Table'[2022/February] ) < 1,
FORMAT ( MAX ( 'Table'[2022/February] ), "percent" ),
MAX ( 'Table'[2022/February] )
)
VAR _large_0 =
IF (
MAX ( 'Table'[2022/February] ) > 1,
FORMAT ( MAX ( 'Table'[2022/February] ), "0.0000" ),
MAX ( 'Table'[2022/February] )
)
RETURN
IF ( MAX ( 'Table'[2022/February] ) < 1, small_0, _large_0 )
If I have misunderstood your meaning, please provide your pbix file and desired output.
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Please refer to my pbix to see if it helps you.
Create two measures.
2022/01 =
VAR small_0 =
IF (
MAX ( 'Table'[2022/January] ) < 1,
FORMAT ( MAX ( 'Table'[2022/January] ), "percent" ),
MAX ( 'Table'[2022/January] )
)
VAR _large_0 =
IF (
MAX ( 'Table'[2022/January] ) > 1,
FORMAT ( MAX ( 'Table'[2022/January] ), "0.0000" ),
MAX ( 'Table'[2022/January] )
)
RETURN
IF ( MAX ( 'Table'[2022/February] ) < 1, small_0, _large_0 )
2022/02 =
VAR small_0 =
IF (
MAX ( 'Table'[2022/February] ) < 1,
FORMAT ( MAX ( 'Table'[2022/February] ), "percent" ),
MAX ( 'Table'[2022/February] )
)
VAR _large_0 =
IF (
MAX ( 'Table'[2022/February] ) > 1,
FORMAT ( MAX ( 'Table'[2022/February] ), "0.0000" ),
MAX ( 'Table'[2022/February] )
)
RETURN
IF ( MAX ( 'Table'[2022/February] ) < 1, small_0, _large_0 )
If I have misunderstood your meaning, please provide your pbix file and desired output.
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, if we use the above calculation then the Totals are not summing up its just picking up the maximum value from the list, can you please let me know how we can have the totals that sums up as well?
This is what is needed!!! Thank a lot!!!!
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 35 | |
| 32 | |
| 25 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 65 | |
| 35 | |
| 32 | |
| 25 | |
| 23 |