cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
satish_pb
New Member

Calculate sum using text wild characters.

I am trying to calulate a measure to sum the quantity of incidents where the text contains VFF.

 

The query i am using 

New VFF = calculate (sum(Query1[QTY]),Query1[Categorized_Disposition] = "*VFF*")
 
I am getting 0 hits. But i know if have text starting with VFF.
2 ACCEPTED SOLUTIONS
RobbeVL
Impactful Individual
Impactful Individual

Hi There,

DAX doesnt use Operators like SQL, it only recognizes the * as text.

try this:

New VFF = calculate (sum(Query1[QTY]), LEFT(Query1[Categorized_Disposition],3) = "VFF"



View solution in original post

TeigeGao
Solution Sage
Solution Sage

Hi @satish_pb ,

We can use the FIND() function to get the list of quantity of incidents where the text contains VFF, please refer to the following DAX query:

Measure =
SUMX (
    'Table',
    IF (
        FIND ( "VFF", 'Table'[Categorized_Disposition], 1, BLANK () ) = BLANK (),
        0,
        'Table'[QTY]
    )
)

The result will like below: 

PBIDesktop_aCoD5tZjto.png

Best Regards,

Teige

View solution in original post

2 REPLIES 2
TeigeGao
Solution Sage
Solution Sage

Hi @satish_pb ,

We can use the FIND() function to get the list of quantity of incidents where the text contains VFF, please refer to the following DAX query:

Measure =
SUMX (
    'Table',
    IF (
        FIND ( "VFF", 'Table'[Categorized_Disposition], 1, BLANK () ) = BLANK (),
        0,
        'Table'[QTY]
    )
)

The result will like below: 

PBIDesktop_aCoD5tZjto.png

Best Regards,

Teige

RobbeVL
Impactful Individual
Impactful Individual

Hi There,

DAX doesnt use Operators like SQL, it only recognizes the * as text.

try this:

New VFF = calculate (sum(Query1[QTY]), LEFT(Query1[Categorized_Disposition],3) = "VFF"



Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

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

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors