Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi,
I 'am trying to count how many rows in MyTable have MyField = Y.
MyField is a logical field.
But something goes wrong...
How can I solve the counting in MyField?
IDCLosed = COUNTAX('Mytable'; [MyField] = TRUE())
Thanks
Solved! Go to Solution.
thanks
It works. I had to substitute = "Y")) with = true ))
@gpiero try this Measure
IDClosed = COUNTROWS ( FILTER (Table, Table[MyField]="Y") )