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 @ExtraRice ,
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 @ExtraRice ,
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.
This is what is needed!!! Thank a lot!!!!
@ExtraRice , I doubt one column can have two data types of the decimal place. You can create a measures return different values
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
This session will provide guidance and teach campers the skills required to build Power BI reports that support multiple languages.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
User | Count |
---|---|
217 | |
56 | |
47 | |
44 | |
43 |
User | Count |
---|---|
296 | |
207 | |
75 | |
75 | |
68 |