Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
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:
Datatable:
COLUMN A | COLUMN B |
NACIONAL | 1 |
INTERNACIONAL | 3 |
NACIONAL | 4 |
NACIONAL | 4 |
NACIONAL | 1 |
INTERNACIONAL | 3 |
INTERNACIONAL | 3 |
NACIONAL | 0 |
NACIONAL | 1 |
NACIONAL | 0 |
INTERNACIONAL | 3 |
INTERNACIONAL | 3 |
Some solution for this?
Thanks
Solved! Go to Solution.
"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
"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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
84 | |
78 | |
41 | |
40 | |
35 |