Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Change Data Type in Specific Rows

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: 

ExtraRice_0-1646035954918.png

 

Thank you

1 ACCEPTED SOLUTION
Anonymous
Not applicable

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 )

vpollymsft_0-1646286571469.png

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.

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

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 )

vpollymsft_0-1646286571469.png

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.

Anonymous
Not applicable

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?

 

Anonymous
Not applicable

This is what is needed!!! Thank a lot!!!!

amitchandak
Super User
Super User

@Anonymous , I doubt one column can have two data types of the decimal place. You can create a measures return different values

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.