The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
It's quite complicated to get a new column which is Greater Than Today compared to "Deadline" column?
What would be the formula for a Custom Column if the existing date column is Deadline and I have to get all the records greater than today marked "Ongoing" in the new Column.
Solved! Go to Solution.
@Anonymous , Not very clear try like
Create a new column
Flag = if ([date] >= today(), "Ongoing","Past")
Hi @Anonymous ,
It seems you want to create a new column to show if the task is ongoing or done. Please refer to the following calculated column:
Status = IF('Table'[Deadline]>Today(),"Ongoing","Done")
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
Hi @Anonymous ,
It seems you want to create a new column to show if the task is ongoing or done. Please refer to the following calculated column:
Status = IF('Table'[Deadline]>Today(),"Ongoing","Done")
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
User | Count |
---|---|
78 | |
74 | |
43 | |
32 | |
28 |
User | Count |
---|---|
104 | |
95 | |
51 | |
50 | |
46 |