Forum Discussion
Lsh0576
3 years agoFrequent Visitor
Help with a COUNT Query
HI there, I need assistance in writing this basic query I am trying to do. I tried IF statements and COUNTROWS but nothing seems to work. Here is what I am trying to do: Count all rows in this co...
- 3 years ago
Hi Lsh0576 for calculated column you can use
Appraisr_Indicator_C =VAR _SelectedDate=DATE("2018","7","19")RETURNIF('Date'[Date]=_SelectedDate,1,0)If you need measure you could use
CALCULATE(
COUNTROWS(<your table>),
Appraisr_Indicator_C =1
)
*PART =1 could be "1" depending on your column data typeI hope this help
some_bih
3 years agoCommunity Champion
Hi Lsh0576 for calculated column you can use
Appraisr_Indicator_C =
VAR _SelectedDate=DATE("2018","7","19")
RETURN
IF('Date'[Date]=_SelectedDate,1,0)
If you need measure you could use
CALCULATE(
COUNTROWS(<your table>),
Appraisr_Indicator_C =1
)
*PART =1 could be "1" depending on your column data type
CALCULATE(
COUNTROWS(<your table>),
Appraisr_Indicator_C =1
)
*PART =1 could be "1" depending on your column data type
I hope this help
- Lsh05763 years agoFrequent Visitor
That worked perfectly. Thank you so much! 🙂