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
a10703
Helper I
Helper I

Countrows with Column A string and B number

Hi guys,

I need help in one measure.

 

I have the format Column A = String and the Collumn B = Number

I need to count the number of rows that meet these requirments:

Count if the value on column A is = "NACIONAL" and if the value on column b ="0" or "1" .

 

But my measure appears one error "MdxScript(Model) (121, 167) Calculation error in measure "Table1"[feedbackmeasure]: Function 'CONTAINSROW' does not support comparison values ​​of type Text with values ​​of type Integer. Consider using the VALUE or FORMAT function to convert one of the values.

 

My measure:

feedbackmeasure= calculate(counta('Table1'[COLUMN A]),Filter(Table1,Table1[COLUMN A]="NACIONAL" && Table1[COLUMN B] IN {"0","1"} ))

 

Datatable:

COLUMN ACOLUMN B
NACIONAL1
INTERNACIONAL3
NACIONAL4
NACIONAL4
NACIONAL1
INTERNACIONAL3
INTERNACIONAL3
NACIONAL0
NACIONAL1
NACIONAL0
INTERNACIONAL3
INTERNACIONAL3

 

Some solution for this?

Thanks

1 ACCEPTED SOLUTION
AntonioM
Solution Sage
Solution Sage

"0" and "1" are both Text, because you've enclosed them in quotes. 

 

Try 

Table1[COLUMN B] IN {0,1}

and see if that works

View solution in original post

1 REPLY 1
AntonioM
Solution Sage
Solution Sage

"0" and "1" are both Text, because you've enclosed them in quotes. 

 

Try 

Table1[COLUMN B] IN {0,1}

and see if that works

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