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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Trying to create a column that shows how many days since something was effective. I have a data tabe that gives me
Agency Name | Client Name | Effecitve Date |
Test | Jane Doe | 12/23/2024 |
I created a Date Table. But can't seem to get the formula to work to show how many days since the Effecitve Date.
Solved! Go to Solution.
@inglexjc
Add this as a Calculated Column to the above table:
Days Since Effective Date =
INT ( TODAY () - [Effecitve Date] + 1 )
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@inglexjc
Add this as a Calculated Column to the above table:
Days Since Effective Date =
INT ( TODAY () - [Effecitve Date] + 1 )
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group