The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hi,
I am trying to get a count of unresolved items that can be derived as follows.
User selects Contract and the Filter Month.
Count would equal anything that is unresolved and created before the slicer date.
My problem is that the results page contains both trending data and this snapshot calculation so I can't just sync the slicer visuals between the menu and the results page. I have to ignore the date slicer somehow and have it lookup the user selected value to a date that I can use.
I have tried a few different measures using all except but can't seem to get the accurate count per contract per month and deal with the slicer/lookup date value issue.
Thanks!
Hi,
I still have not figured this out. Does anyone have any suggestions? In the end I just want the outstanding balance as of that date for the one contract? Thanks
Thanks, this is still not working as it would intended.
Isn't there a simple way to use just all or keep filters to do this? The box in step 1 is a text so this is making it more complicated.
I end up getting all of the contracts using a measure like this.
@Anonymous , if the ignore means that you need a trend before the date, you need independent date table
//Date1 is independent Date table, Date is joined with Table
new measure =
var _max = maxx(allselected(Date1),Date1[Date])
return
calculate( sum(Table[Value]), filter('Date', 'Date'[Date] <=_max))
If you need only value allexcept should work
Fact on "many" side and dim on one side
calculate([measure], allexcept(Fact, Date[Date]) )
User | Count |
---|---|
56 | |
54 | |
53 | |
47 | |
30 |
User | Count |
---|---|
175 | |
88 | |
69 | |
48 | |
46 |