Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
110 | |
102 | |
99 | |
38 | |
37 |
User | Count |
---|---|
158 | |
125 | |
76 | |
74 | |
63 |