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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Ahsan_R
New Member

Numbers showing abnormal values in ABC/123 Column Format

Hi Experts,

 

My data contains a column "Title" with Text and Numbers in different rows.

While Text is showing complete values, numbers are shown as below. (Covered some data in text rows to keep data private)

Please guide if it can be changed to display as whole number.

If i change column to "Whole Number" it gives error. (As there is text in same column).

 

Ahsan_R_0-1698318691263.png

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Ahsan_R 

You can refer to the following solution

Sample data 

vxinruzhumsft_0-1698629480962.png

You can create a calculated column

Column =
VAR a =
    SUMMARIZE (
        ADDCOLUMNS (
            GENERATESERIES ( UNICODE ( "A" ), UNICODE ( "Z" ) ),
            "Character", UNICHAR ( [Value] )
        ),
        [Character]
    )
VAR b =
    COUNTROWS (
        FILTER ( a, CONTAINSSTRING ( EARLIER ( 'Table'[Title] ), [Character] ) )
    )
RETURN
    IF ( ISBLANK ( b ), CONVERT ( [Title], INTEGER ), 0 )

Output

vxinruzhumsft_1-1698629643458.png

Best Regards!

Yolo Zhu

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

3 REPLIES 3
Anonymous
Not applicable

Hi @Ahsan_R 

You can refer to the following solution

Sample data 

vxinruzhumsft_0-1698629480962.png

You can create a calculated column

Column =
VAR a =
    SUMMARIZE (
        ADDCOLUMNS (
            GENERATESERIES ( UNICODE ( "A" ), UNICODE ( "Z" ) ),
            "Character", UNICHAR ( [Value] )
        ),
        [Character]
    )
VAR b =
    COUNTROWS (
        FILTER ( a, CONTAINSSTRING ( EARLIER ( 'Table'[Title] ), [Character] ) )
    )
RETURN
    IF ( ISBLANK ( b ), CONVERT ( [Title], INTEGER ), 0 )

Output

vxinruzhumsft_1-1698629643458.png

Best Regards!

Yolo Zhu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Thank you very much for support.

lbendlin
Super User
Super User

You should not use ABC123 (variant)  data type columns, and you should not mix data types in the same column. Worst case define the column as text.

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors