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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hello all,
I have a table with 2 columns: Category and Value.
Based on the Category I want to add a date column.
The categories are Shipping Today which should give today's date, Next Consolidation, which should give Friday's date, and then there are a few others that will be blank for the date for a variety of reasons.
Maybe I've been spending too much time in Excel lately but I just cant figure this out. I dont mind doing this in the query editor or by adding a column in the model.
Any help will be apprecaited.
Solved! Go to Solution.
@steigelbill - Perhaps:
Column =
SWITCH([Category],
"Shipping Today",TODAY(),
"Next Consolidation",TODAY() + 6 - WEEKDAY(TODAY()),
BLANK()
)
@steigelbill - Perhaps:
Column =
SWITCH([Category],
"Shipping Today",TODAY(),
"Next Consolidation",TODAY() + 6 - WEEKDAY(TODAY()),
BLANK()
)
Works like a champ! It's always great to find new functions. Thanks much Greg!
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 63 | |
| 53 | |
| 42 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 124 | |
| 105 | |
| 44 | |
| 32 | |
| 24 |