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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
A_Scott
Helper I
Helper I

SUM Function cannot work with values of type String - But I use CONVERT and it still doesn't work...

I wrote a DAX statement:

Summary - Exit Surveys =
"Location currently has " & CONVERT ( [Str. Mgmt. Count], STRING ) & " members of store management and have completed "
    & [Completed Exit Surveys] & " Unobstructed & Emergency Exit Verification surveys in the last 7 days."
 
I get the error:
A_Scott_0-1680879461658.png

The only measure in my DAX statement that is a SUM function in it's original measure is the [Str. Mgmt. Count], which I have incorporated the CONVERT function to solve for the value being a string. But it still won't work... the measure [Completed Exit Surveys] is a COUNT function in it's original measure.

 

I wrote a similar DAX statement that worked perfectly...

Summary - Meat Saw =
"This location currently has " & 'All Measures'[Meat Saw Count] & " meat saw(s) that " & [Meat Saw Are/Aren't Meeting Min.] & " meeting the minimum required inspections per day."
1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @A_Scott 

please try

Str. Mgmt. Count =

SUMX 

'All Open Retail Locations',

VALUE ( 'All Open Retail Locations'[Store.Mgr and ASL Count] )

)

View solution in original post

4 REPLIES 4
tamerj1
Super User
Super User

Hi @A_Scott 

please try

Str. Mgmt. Count =

SUMX 

'All Open Retail Locations',

VALUE ( 'All Open Retail Locations'[Store.Mgr and ASL Count] )

)

Worked perfectly! Thanks for your help

FreemanZ
Super User
Super User

hi @A_Scott 

Are you creating a column or a measure?
[Completed Exit Surveys] and [Str. Mgmt. Count], what are they?

I am creating a measure. 

 

[Completed Exit Surveys] is : Completed Exit Surveys = DISTINCTCOUNT('Exit Survey Data'[ID]) +0

[Str. Mgmt. Count is] : Str. Mgmt. Count = sum('All Open Retail Locations'[Store.Mgr and ASL Count])

 

Even if I use the CONVERT function in the DAX for [Str. Mgmt. Count] instead of in the DAX for [Summary - Exit Survey] it still doesn't work.

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

Check out the August 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

Find out what's new and trending in the Fabric Community.