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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
abhay03
Helper I
Helper I

sum of values in a Text type field

I have a table which has some string and some numeric values. Becuase of string values the type of the field is Text.

 

SeriesFilesValue
IAabc
IAabc
IB2
IB2
IC3
IC3
IIAabc
IIB5
IIB5
IIC3
IIC3


I want to create a measure that filters out text fields and calculates the sum of Distinct values by Files group by Series for numeric values. So here the expected outcome would be:

 

SeriesCountExplanation
I5Distinct of B + Distinct of C (2+3)
II8Distinct of B + Distinct of C (5+3)
1 ACCEPTED SOLUTION
Vvelarde
Community Champion
Community Champion

@abhay03

 

Hi, try this:

 

To a better explanation i create columns :

 

1: Two calculated Columns:

 

IsText = IF(ISERROR(VALUE(Table1[Value])),"Text","Number")

ValuetoNumber = IF(Table1[IsText]="Number",VALUE(Table1[Value]))

 

2. A measure to SUM

 

Measure =
SUMX (
    SUMMARIZE (
        'Table1',
        'Table1'[Series],
        'Table1'[Files],
        "ValueX", AVERAGE ( Table1[ValuetoNumber] )
    ),
    [ValueX]
)

Image.png

Regards

 

Victor

Lima - Peru

 

 




Lima - Peru

View solution in original post

2 REPLIES 2
Vvelarde
Community Champion
Community Champion

@abhay03

 

Hi, try this:

 

To a better explanation i create columns :

 

1: Two calculated Columns:

 

IsText = IF(ISERROR(VALUE(Table1[Value])),"Text","Number")

ValuetoNumber = IF(Table1[IsText]="Number",VALUE(Table1[Value]))

 

2. A measure to SUM

 

Measure =
SUMX (
    SUMMARIZE (
        'Table1',
        'Table1'[Series],
        'Table1'[Files],
        "ValueX", AVERAGE ( Table1[ValuetoNumber] )
    ),
    [ValueX]
)

Image.png

Regards

 

Victor

Lima - Peru

 

 




Lima - Peru

Thanks @Vvelarde,

 

you are just missing a comma after SUMMARIZE function in the measure. Your solution worked perfectly for me.

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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.