March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi,
Solved! Go to Solution.
Hi @d_sandip59 ,
Based on your previously measure, you can create a new table to extract date first:
Table = DISTINCT('EDG_COUNT_STATUS'[Date])
Then try to create this measure:
Date filter =
VAR _date =
SELECTEDVALUE ( EDG_COUNT_STATUS[Date] )
RETURN
IF (
NOT ( ISFILTERED ( 'Table'[Date] ) ),
[MaxDateFilter],
IF ( _date IN FILTERS ( 'Table'[Date] ), 1, 0 )
)
You can put this measure in the visual filter of table to solve this case:
Here is the demo, please try it:
Best Regards,
Yingjie Li
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Refer the option you have incremental load
https://docs.microsoft.com/en-us/power-bi/service-premium-incremental-refresh
Hi,
I want to show data at Table chart, but not to load them in a incremental load way. I think you misunderstood me.
There are a few ways. Create your calendar table till the max date. And the filter for day .
Create a filter of yes and no in the calendar table based on max date of data and use that filter
Or create a measure like this
Measure =
var _min = maxx(Table,table[date])
return
calculate(count(Table[ID]), filter(table,table[Due_dates]=_max))
Refer
https://www.youtube.com/watch?v=c_MjL1Cngbs
Hi,
I am working on the issue and have create a calculated column on the below dax:
MaxDateFilter =
var vMaxLoadDate = CALCULATE ( MAX ( EDG_COUNT_STATUS[Date] ), ALL ( 'EDG_COUNT_STATUS' ) ))
return IF( MIN(EDG_COUNT_STATUS[Date]) = vMaxLoadDate ,1,0)
and make MaxDateFilter =1 only.
but doing that it only loads data based on max date only at the table. But now if I choose different date from the filter it does not load data at the table based on the selected date.
So any suggestion on that?
Hi @d_sandip59 ,
Based on your previously measure, you can create a new table to extract date first:
Table = DISTINCT('EDG_COUNT_STATUS'[Date])
Then try to create this measure:
Date filter =
VAR _date =
SELECTEDVALUE ( EDG_COUNT_STATUS[Date] )
RETURN
IF (
NOT ( ISFILTERED ( 'Table'[Date] ) ),
[MaxDateFilter],
IF ( _date IN FILTERS ( 'Table'[Date] ), 1, 0 )
)
You can put this measure in the visual filter of table to solve this case:
Here is the demo, please try it:
Best Regards,
Yingjie Li
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
Thank you very much for your help. It really wroks.
Thanks,
Sandip
Hi,
My pleasure🙂
Best Regards,
Yingjie Li
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
115 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
164 | |
116 | |
63 | |
57 | |
50 |