Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
Still a novice to this so this may be a very basic question.
I have set a variable as follows ,
FirstSortedValue([Part Number], -Aggr(sum({$<Week={$(=max(Week))},eTailer-={specified etailer name}>}[Total Events]),[Part Number]))
(That works fine to display the Part Number)
and referenced it in a text box to try to count the number of clicks (Total Events) this part had last week (This is for a dashboard view btw) as follows:
=sum({<[Part Number]={$(vTopPartLastWeek)}>}[Total Events])
But I cannot make this work, can anyone please tell me where I've gone wrong here?
Try this:
=sum({<[Part Number]={'$(vTopPartLastWeek)'}>}[Total Events])
- Marcus
Try this:
=sum({<[Part Number]={'$(vTopPartLastWeek)'}>}[Total Events])
- Marcus
Thank you SOOO much Marcus!!
This works a treat.