Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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.
Solved! Go to Solution.
@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()
)
@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()
)
User | Count |
---|---|
16 | |
15 | |
14 | |
12 | |
11 |
User | Count |
---|---|
19 | |
15 | |
14 | |
11 | |
9 |