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

Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.

Reply
ovetteabejuela
Impactful Individual
Impactful Individual

Help on Categorizing Data

Hi,

 

How can I achieve the output shown in Green.

 

**You may use Mock data found at the bottom

categorize_it.PNG

 

HoomanDateSale
Richard1-Jan45
Richard2-Jan12
Richard3-Jan 
Richard4-Jan 
Richard5-Jan25
Tanya1-Jan 
Tanya2-Jan123
Tanya3-Jan 
Tanya4-Jan32
Tanya5-Jan 
Leonard1-Jan43
Leonard2-Jan75
Leonard3-Jan90
Leonard4-Jan71
Leonard5-Jan49
   

 

1 ACCEPTED SOLUTION
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @ovetteabejuela,

 

Please refer to this measure:

Made sale everyday =
IF ( COUNTROWS ( FILTER ( Test, Test[Sale] = BLANK () ) ) > 0, "No", "Yes" )

1.PNG

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @ovetteabejuela,

 

Please refer to this measure:

Made sale everyday =
IF ( COUNTROWS ( FILTER ( Test, Test[Sale] = BLANK () ) ) > 0, "No", "Yes" )

1.PNG

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Zubair_Muhammad
Community Champion
Community Champion

@ovetteabejuela

 

May be a MEASURE like

 

Measure = COUNTBLANK(Table1[Sale])=0

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors