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
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!
User | Count |
---|---|
119 | |
78 | |
58 | |
52 | |
46 |
User | Count |
---|---|
170 | |
117 | |
63 | |
58 | |
51 |