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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi! I have a column in which I'm pulling the year from another date column. What I need is for the blank columns to have the text 'In Flight' - Is anybody able to help me do this?
Solved! Go to Solution.
Hello @MeganMarkey
You want to display the year from a date column, but if the date is blank, show the text "In Flight".
This can be done with an IF condition in DAX or in Power Query.
Try it:
If this response was helpful in any way, I’d gladly accept a 👍much like the joy of seeing a DAX measure work first time without needing another FILTER.
Please mark it as the correct solution. It helps other community members find their way faster (and saves them from another endless loop 🌀.
Calculated Column:
Year_Display = IF(ISBLANK(YEAR([DateColumn])), "In Flight", YEAR([DateColumn]))
If this answer helped, please click Kudos or mark as Solution.
-Kedar
LinkedIn: https://www.linkedin.com/in/kedar-pande
Hello @MeganMarkey
You want to display the year from a date column, but if the date is blank, show the text "In Flight".
This can be done with an IF condition in DAX or in Power Query.
Try it:
If this response was helpful in any way, I’d gladly accept a 👍much like the joy of seeing a DAX measure work first time without needing another FILTER.
Please mark it as the correct solution. It helps other community members find their way faster (and saves them from another endless loop 🌀.
That worked perfectly! Thank you so much!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 19 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 31 | |
| 31 | |
| 20 | |
| 12 | |
| 12 |