This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! 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
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 31 | |
| 23 | |
| 22 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 64 | |
| 41 | |
| 26 | |
| 22 | |
| 21 |