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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Grace_Guo
Regular Visitor

Conditional Formatting

Hi I was wondering if I am using the conditional formatting correctly?

My goal is essentially be a table checklist. From the excel reference source, there is either a date for when an activity is completed or not, and I wanted to display (on the Power Bi) a check mark for whenever the source spreadsheet has a date in the column.

My question is the value set are dates, not numbers, and under the conditions can only do percentages or numbers. If I do the following:

Grace_Guo_0-1645136001079.png

 

Then am I really saying if the reference cell is blank then display an X, and if there is a date in the cell display a checkmark?

Any help and suggestions is greatly appreciated 🙂

3 REPLIES 3
TheoC
Community Champion
Community Champion

Hi @Grace_Guo 

 

Create a new calculated column: 

 

Date Check = IF ( ISBLANK ( Table[Reference Cell] ) , 0 , 1 )

 

From there, you should be able to use the new Date Check column as the basis of building your Table Checklist.

 

Hopefully I have understood the issue correctly. Apologies if I haven't.


Theo 🙂

If I have posted a response that resolves your question, please accept it as a solution to formally close the post.

Also, if you are as passionate about Power BI, DAX and data as I am, please feel free to reach out if you have any questions, queries, or if you simply want to connect and talk to another data geek!

Want to connect?www.linkedin.com/in/theoconias

Hi @TheoC Thanks for the advice! I think you understood what I am looking for. I am new to power bi and learning as I go. So would I make the new column on the transform data querie? 

TheoC
Community Champion
Community Champion

Hi @Grace_Guo 

 

That's good to hear. And don't stress, we all started our journey the same way! 🙂

 

In terms of the Calculated Column, you won't need to use Transform Data (also referred to as Power Query). Rather, if you go to the main ribbon, you should see a button called "New Column".  If you click that and copy / paste the code I wrote, you should get what you are wanting. 

 

Let me know if that makes sense k otherwise can organise screenshots and a couple of step throughs.

 

Thanks heaps,

Theo

 

If I have posted a response that resolves your question, please accept it as a solution to formally close the post.

Also, if you are as passionate about Power BI, DAX and data as I am, please feel free to reach out if you have any questions, queries, or if you simply want to connect and talk to another data geek!

Want to connect?www.linkedin.com/in/theoconias

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors