Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
Hi Gurus,
I am currently working on a report where I have local Nepali calendar that has month start from about mid of english month and year end in about mid of April. How can I calculate End of Month for this type of calendar. I have a data that has end of month balance based on Nepali month end date. I have limited time to close this project.
Your help will be greately appriciated.
Regards,
Jag
I would add a Nepali year column and then create a DAX column that gets the MAX date for the same year and month. For example,
NepaliEOM =
CALCULATE (
MAX ( Date[NepaliDate] ),
ALLEXCEPT ( Date, Date[NepaliYear], Date[NepaliMonth] )
)
Pat
hi @Jagdish_Jha
you have already a good date table linking the two calendars. What challenge do you face specifically?
User | Count |
---|---|
23 | |
12 | |
10 | |
10 | |
8 |
User | Count |
---|---|
16 | |
15 | |
14 | |
14 | |
11 |