March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi guys,
I have a table with colummn that contains several numbers and I need to sum them.
It would be easy, but in this colummn I have some words together and I can't take this words.
for exemple:
Values:
10,00
20,00
not yet
30,00
loading
40,00....
How can I creat a measure that just sum the numbers disregarding the words?
Solved! Go to Solution.
Hi @LeonardCs
Please try
Measure =
SUMX (
'Table',
IFERROR ( 'Table'[Value] + 0, 0 )
)
@LeonardCs Try this. PBIX attached below signature.
Measure =
VAR __Table =
ADDCOLUMNS(
'Table',
"Column1", IF( ISERROR( [Values:] + 0 ), BLANK(), [Values:] + 0 )
)
VAR __Result = SUMX( __Table, [Column1] )
RETURN
__Result
Thank you for responding quickly
Hi @LeonardCs
Please try
Measure =
SUMX (
'Table',
IFERROR ( 'Table'[Value] + 0, 0 )
)
This was easier than I imagined! Thank you so much 🙏🙏
@tamerj1 Beat me by 15 seconds!! And nice one!
Lol
It's been a while since I last answered a question in the forum.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
23 | |
16 | |
15 | |
7 | |
6 |
User | Count |
---|---|
33 | |
29 | |
16 | |
13 | |
12 |