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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Anonymous
Not applicable

One year later and an empty field

Hi, my problem is a little bit complicated. I want to create a a field, which only shows up when two conditions are fulfilled. I have two relevant date tables for that. My first date table is [Date Dispatch] and my second [Date Estimated]. I want that the new field with a warning signal (and maybe the option to click on it to see all other informations) should pop up, when its one year after [Date Dispatch] AND [Date Estimated] is empty. I´ve tried it with If function but that doesn´t work. Maybe anybody could help me or just have an idea how to solve it. Thanks in advance.

1 ACCEPTED SOLUTION
saurabhtd
Resolver II
Resolver II

@Anonymous  You can create a calculated column which will show warning signal. 

Warning Signal = IF(
DATEDIFF(Table[Date Dispatch], TODAY(), DAY) >= 365 && ISBLANK(Table[Date Estimated]),
"Warning",
BLANK()
)

View solution in original post

1 REPLY 1
saurabhtd
Resolver II
Resolver II

@Anonymous  You can create a calculated column which will show warning signal. 

Warning Signal = IF(
DATEDIFF(Table[Date Dispatch], TODAY(), DAY) >= 365 && ISBLANK(Table[Date Estimated]),
"Warning",
BLANK()
)

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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