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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
monojchakrab
Resolver III
Resolver III

sum only numeric strings in a list containing both numeric and text strings

I am working with a list as follows :

{"x", "100","200")

And I want to sum only the 100 and 200, skipping the text string [the text string is not at a fixed loaction in all the lists, so list.skip does not work).

Is there some combination of List.Sum and List.Transform to acheive this task?

Thanking in advance

1 ACCEPTED SOLUTION
Vijay_A_Verma
Super User
Super User

See here

List.Sum(List.Transform({"x", "100","200", "x300", 500}, (x)=> if Value.FromText(x) is number then Value.FromText(x) else 0 ))

View solution in original post

2 REPLIES 2
Vijay_A_Verma
Super User
Super User

See here

List.Sum(List.Transform({"x", "100","200", "x300", 500}, (x)=> if Value.FromText(x) is number then Value.FromText(x) else 0 ))

Thanks @Vijay_A_Verma - that worked like a charm. I was missing using the function, which simplifies the code.

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

Top Solution Authors
Top Kudoed Authors