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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi everyone,
Can anyone help me code, im trying to get my value from the last day of each month at 1130 PM. Im unsure how to code to find the last day of each month
Thank you.
Solved! Go to Solution.
@Anonymous , For new column, for any date you want to know last date of month
New column = eomonth([date], 0)
for today // you can use today in new column
New column = eomonth(today(), 0)
@Anonymous , last day of each month is eomonth([Date],-1)
example
based on selected date
New Measure =
Var _max = maxx(allselected(Date) , Date[date])
return
calculate(sum(Table[value]), filter('Table', Table[date] =_max + time(23,30,0)))
with today
New Measure =
Var _max = today()
return
calculate(sum(Table[value]), filter('Table', Table[date] =_max + time(23,30,0)))
Hello sir,
I am trying to obtain the last day of the month that the data is in. For exmple on January, last day is 31 January. From the code, it gives the last day of the month before
@Anonymous , For new column, for any date you want to know last date of month
New column = eomonth([date], 0)
for today // you can use today in new column
New column = eomonth(today(), 0)
works for me thankuu
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 59 | |
| 42 | |
| 18 | |
| 15 |
| User | Count |
|---|---|
| 109 | |
| 101 | |
| 39 | |
| 29 | |
| 29 |