Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hi all,
I'm trying to identify the date value of a specific row selected within my table visual and use it to modify an existing measure by replacing the Today() part with that date from the row.
So for the example below I would need to identify that the date value is "2017-07-22" and use it in the measure:
SalesPerDate = CALCULATE(RealTimeData[Total Sales], DATEVALUE(RealTimeData[Date]) = TODAY())
PLEASE NOTE:
This is a streaming dataset and Calculated Columns / Editing Queries etc are not allowed. It has to be a measure to obtain that value and then use it in another measure.
Thanks for any assistance.
Solved! Go to Solution.
@iAm3G wrote:
Hi all,
I'm trying to identify the date value of a specific row selected within my table visual and use it to modify an existing measure by replacing the Today() part with that date from the row.
So for the example below I would need to identify that the date value is "2017-07-22" and use it in the measure:
SalesPerDate = CALCULATE(RealTimeData[Total Sales], DATEVALUE(RealTimeData[Date]) = TODAY())
PLEASE NOTE:
This is a streaming dataset and Calculated Columns / Editing Queries etc are not allowed. It has to be a measure to obtain that value and then use it in another measure.
Thanks for any assistance.
If I understand your request correctly, you just need to remove the filter. The SalesPerDate would vary according to your slicer
SalesPerDate = CALCULATE(RealTimeData[Total Sales])
What is your another measure, the first measure would change according to the context of the another measure.
By the way, is the RealTimeData[Date] a text column?
@iAm3G wrote:
Hi all,
I'm trying to identify the date value of a specific row selected within my table visual and use it to modify an existing measure by replacing the Today() part with that date from the row.
So for the example below I would need to identify that the date value is "2017-07-22" and use it in the measure:
SalesPerDate = CALCULATE(RealTimeData[Total Sales], DATEVALUE(RealTimeData[Date]) = TODAY())
PLEASE NOTE:
This is a streaming dataset and Calculated Columns / Editing Queries etc are not allowed. It has to be a measure to obtain that value and then use it in another measure.
Thanks for any assistance.
If I understand your request correctly, you just need to remove the filter. The SalesPerDate would vary according to your slicer
SalesPerDate = CALCULATE(RealTimeData[Total Sales])
What is your another measure, the first measure would change according to the context of the another measure.
By the way, is the RealTimeData[Date] a text column?
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 |
| User | Count |
|---|---|
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 1 |