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
Hi,
I have two tables (Base N2 and Calendars) and two columns in my excel base "Ticket Number" and "reported_date" (Open Tickets), I need to calculate the Age of the tickets.
Follow below the formula that i used, but it did not work.
Aging2 = IF(TODAY()-'Base N2'[reported_date]<=5;"1-5 days";IF(TODAY()-'Base N2'[reported_date]<=15;"6-15 days";IF(TODAY()-'Base N2'[reported_date]<=30;"16-30 days";"+30 days")))
Can you help me?
Regards,
Renato
Solved! Go to Solution.
Please download this solution at below link.
https://drive.google.com/open?id=0B5-C_3XrFPdOMEZZc05OQ1lxYWc
Follow the process of creating new calculated columns and You would see the expected results for your data.
Let me know if you need further help.
Hi renatofrancavr,
You need to switch all ";" to "," to make the formula work in Power BI desktop. The formula should be:
Aging2 = IF(TODAY()-'Base N2'[reported_date]<=5,
"1-5 days",
IF(TODAY()-'Base N2'[reported_date]<=15,
"6-15 days",
IF(TODAY()-'Base N2'[reported_date]<=30,
"16-30 days",
"+30 days")
)
)
See:
Please post back if you need any further assistance regarding DAX calculation.
Regards
Hi Michael,
My PB is in Portuguese. We use ";"
Thanks for your help.
Regards,
Renato
Please download this solution at below link.
https://drive.google.com/open?id=0B5-C_3XrFPdOMEZZc05OQ1lxYWc
Follow the process of creating new calculated columns and You would see the expected results for your data.
Let me know if you need further help.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
87 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |