Forum Discussion
filtering the real time data
Hey Folks,
I am working on bulk of real time data, which keeps on refreshing every 5min. and want to create a output of only the current data to be displayed.
Example- I have all list of country i want to choose USA and select its population at the last refresh period
THING I HAVE TRIED.( i am a begginer and not goot with DAX)
1- Column 2 = CALCULATETABLE(POWERPRD,EXCEPT(VALUES(POWERPRD[Site ID]),VALUES(netpower[latest_date])))
4 Replies
- v-frfei-msft
Community Support
Hi Anonymous,
We can create a calculated table to filter. If it doesn't meet your requirement, kindly share your sample data and excepted result to me. Please upload your files to One Drive and share the link here.
Table = var _max = CALCULATE(MAX('Table2'[date]),ALL(Table2)) return CALCULATETABLE(Table2,Table2[date]<=_max && DATEDIFF('Table2'[date],_max,MINUTE)<=5)Regards,
Frank
- AnonymousNot applicable
Thank you so much for the response, but its not working.
Here is the link as an example- https://drive.google.com/file/d/1BWDK526ltwcTfcOmfSf1t-g1tkCV4j-P/view?usp=sharing
The Time Stamp is real time SQL Data and i just want to see the last refreshed value.
- v-frfei-msft
Community Support
Hi Anonymous,
To creat a measure as below.
Measure = var _max = CALCULATE(MAX('Table1'[Time Stamp]),ALL(Table1)) return IF(MAX('Table1'[Time Stamp])=_max,1,0)Then filter the table visual by the measure.
Regards,
Frank