March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi all!
I have this calculated column that shows a little stop character if x conditions are met:
Planned Ship FORMAT =
IF(AND('board-Query'[STEP30 Plan Completion Date] > RELATED('board-Sheet'[Planned Ship Date]), ISBLANK('board-Query'[STEP30 Actual Completion Date]) ), UNICHAR(9940), "")
Is there any way to add another condition, that is the same as this but for STEP40, into this that says if the conditions for STEP30 OR STEP40 are met, add the unichar ... so like this:
Planned Ship FORMAT = IF(AND('board-Query'[STEP30 Plan Completion Date] > RELATED('board-Sheet'[Planned Ship Date]), ISBLANK('board-Query'[STEP30 Actual Completion Date]) ), UNICHAR(9940), "") OR IF(AND('board-Query'[STEP40 Plan Completion Date] > RELATED('board-Sheet'[Planned Ship Date]), ISBLANK('board-Query'[STEP40 Actual Completion Date]) ), UNICHAR(9940), "")
Thank you 🙂
Solved! Go to Solution.
Hi @sy898661
you can give this a try
IF(AND('board-Query'[STEP30 Plan Completion Date] > RELATED('board-Sheet'[Planned Ship Date]), ISBLANK('board-Query'[STEP30 Actual Completion Date])
||
IF(AND('board-Query'[STEP40 Plan Completion Date] > RELATED('board-Sheet'[Planned Ship Date]), ISBLANK('board-Query'[STEP40 Actual Completion Date])),
UNICHAR(9940),""))
check for extra parenthesis if any.
Thanks,
Tejaswi
Hi @sy898661
you can give this a try
IF(AND('board-Query'[STEP30 Plan Completion Date] > RELATED('board-Sheet'[Planned Ship Date]), ISBLANK('board-Query'[STEP30 Actual Completion Date])
||
IF(AND('board-Query'[STEP40 Plan Completion Date] > RELATED('board-Sheet'[Planned Ship Date]), ISBLANK('board-Query'[STEP40 Actual Completion Date])),
UNICHAR(9940),""))
check for extra parenthesis if any.
Thanks,
Tejaswi
Thank you so much @Anonymous , that was just what I needed!! 🙂
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
134 | |
91 | |
89 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
72 | |
68 |