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 All,
I have number filed from D365 (decimal) which indicates on which day monthly payment should happen.
I need to show all records where this day is exceeded by 7 days in current month, while the report is checked (today).
How Can I create function where:
YEAR(current)MONTH(current)DAY(decimal field) + 7 >= Today ?
Solved! Go to Solution.
Thanks for help.
Problem was solved in different way.
We added addiotional field in CRM with date I need.
Hi @HubertZieciak , Could you post a sample of your date data, and an example of the output you are looking for please?
I have column "Payment day" (decimal) which shows day in a month when payment should be made, i.e. number 29 means payment should be done on 29th of each month.
Now what I really need to check is, if Payment day was exceeded by 7 days (today < Payment day +7).
I can't figure out how to number from decimal column convert/fit into date column/measure.
@HubertZieciak Please try this as a New Column to create date for your Payment Day field.
PaymentDate = DATE(YEAR(TODAY()),MONTH(TODAY()),Test298Date[PaymentDay])
Then you can add 7 days to the Payment Date to check
Check = IF(Test298Date[PaymentDate]+7<TODAY(),"Y","N")
Proud to be a PBI Community Champion
Thanks for help.
Problem was solved in different way.
We added addiotional field in CRM with date I need.
Thank you Pattem.
I tried this solution, but I got an error:
Column format is set to date:
User | Count |
---|---|
120 | |
77 | |
58 | |
52 | |
46 |
User | Count |
---|---|
171 | |
117 | |
63 | |
57 | |
51 |