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!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
I have a report I'm trying to modify. There is a memo field on the report that needs to contain a date range based on what dates have been entered into the date slicer. The correct range of dates are pulling but it is listing individuial dates not the date range. For the below I need date range to show as 3/1/2025-3/31/2025 instead of 3/1/2025 - 3/1/2025 or 3/12/2025-3/12/2025. I'm using Min and Max to get start date and end date for the Memo field. I.e.
(
Any suggestions?
Solved! Go to Solution.
Hi @lisapduan ,
Apologies for any earlier inconvenience. Our testing confirms that the date range logic functions as intended and meets your original requirements.
FYI:
From your latest message, it seems a particular relationship in your data model is affecting the date context flow. This explains why the logic worked correctly when that specific table was removed.
While the DAX solution is robust, you may need to adjust your model setup slightly to ensure everything aligns perfectly.
I have also attached a .pbix file containing a simplified example of the working logic for your reference.
Regards,
Yugandhar.
Hi @lisapduan ,
We noticed we haven't received a response from you yet, so we wanted to follow up and ensure the solution we provided addressed your issue. If you require any further assistance or have additional questions, please let us know.
Your feedback is valuable to us, and we look forward to hearing from you soon.
Hi @lisapduan ,
May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.
Thank you.
Hi @lisapduan ,
Has your issue been resolved, or do you require any further information? Your feedback is valuable to us. If the solution was effective, please mark it as 'Accepted Solution' to assist other community members experiencing the same issue.
This issue has not been resolved and put on the back burner due to other priorities. The issue seems to be more of a realationship issue. When we were backing tracking through the set up we noticed when 1 table was removed, what we were wanting to do worked. It is a critical table though so it has to be there. We are going to rebuild the model from scratch when we have time. The original was built by by someone no longer here.
Hi @lisapduan ,
Apologies for any earlier inconvenience. Our testing confirms that the date range logic functions as intended and meets your original requirements.
FYI:
From your latest message, it seems a particular relationship in your data model is affecting the date context flow. This explains why the logic worked correctly when that specific table was removed.
While the DAX solution is robust, you may need to adjust your model setup slightly to ensure everything aligns perfectly.
I have also attached a .pbix file containing a simplified example of the working logic for your reference.
Regards,
Yugandhar.
They are using the same date dimension. When I try this I get message "Query has exceed available resources and will not reutn anything."
Is it a separate dimension or a date field in the same table?
Date field in the same table
Hi @lisapduan ,
Replace YourTable [Date] with the actual table/column name.
Then, utilize this measure in your memo field display.
If you continue to encounter the "Query has exceeded available resources" error.
1. First, test it using a card visual and Avoid using it directly in high row-level detail visuals like tables or matrices. Instead, create this measure at the page/report level and display it above the table.
Thank you @Deku , for your response.
Thank You.
If the dates are coming from a separate date dimension, use
Var minDt = min(dates[date])
Var maxDt = max(dates[date])
Return
MinDt & " - " maxDt
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 60 | |
| 47 | |
| 39 | |
| 24 | |
| 23 |
| User | Count |
|---|---|
| 144 | |
| 106 | |
| 63 | |
| 38 | |
| 31 |