cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Lsh0576
Frequent 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 column (Lead Appraisers) with a start date of >= than 07/01/2023. Seems fairly simple but I am not sure why it doesnt work. I tried this:

 

Appraisr_Indicator_C = IF('Table'[Start Date]=09/17/2018,1,0)
 
Then I was just going to do a count on this created field but have been unsuccessful.
 
Thank you so much,
Lovella
1 ACCEPTED SOLUTION
some_bih
Memorable Member
Memorable Member

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
I hope this help
Sarajevo, Bosnia and Herzegovina

View solution in original post

2 REPLIES 2
some_bih
Memorable Member
Memorable Member

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
I hope this help
Sarajevo, Bosnia and Herzegovina

That worked perfectly. Thank you so much! 🙂

Helpful resources

Announcements
Join Arun Ulag at MPPC23

Join Arun Ulag at MPPC23

Get a sneak peek into this year's Power Platform Conference Keynote.

PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

Top Solution Authors
Top Kudoed Authors