Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Super User
Super User

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




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!






View solution in original post

2 REPLIES 2
some_bih
Super User
Super User

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




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!






That worked perfectly. Thank you so much! 🙂

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors