Forum Discussion
Dax slicer multiple selections
Dear Community,
I am building a cashflow forecast, where the due date of bills can dynamically changed with an X number of days, using a parameter. This is combined with a slicer where the specific cost category can be selected. The due date for that specific category can be extended when this category is selected.
I arranged this with the following formula:
Measure =
IF(ALLSELECTED('Slicer Table'[Category]) in FILTERS('Value by date 2'[Category]),
CALCULATE (SUM( 'Value by date 2'[Value] ) , DATEADD(DimDate[Date],-[Value Parameter],DAY)),
CALCULATE (sum('Value by date 2'[Value]) , DATEADD(DimDate[Date],0,DAY)))
This works perfect, but the problem is that there is an error when I select multiple categories at the same time:
The error says: a table of multiple of values was supplied where a single value was expected.
Can someone give some advice how to adjust my DAX-formula to make it possible to select multiple items?
If it helps, the PBIX file can be downloaded here:
https://www.dropbox.com/s/nfuec09wlxovioo/Casfhlow%20Forecast%20share.pbix?dl=0
Thank you very much in advance!
IAA
I am not sure why you have a disconnected slicer for the categoryTry this measure:
Measure = IF ( COUNTROWS( INTERSECT( ALLSELECTED ( 'Slicer Table'[Category] ), FILTERS('Value by date 2'[Category] ) ))>0, CALCULATE ( SUM ( 'Value by date 2'[Value] ), DATEADD ( DimDate[Date], - [Value Parameter], DAY ) ), CALCULATE ( SUM ( 'Value by date 2'[Value] ), DATEADD ( DimDate[Date], 0, DAY ) ) )________________________
Did I answer your question? Mark this post as a solution, this will help others!.
Click on the Thumbs-Up icon on the right if you like this reply 🙂
5 Replies
- Fowmy
Super User
IAA
I am not sure why you have a disconnected slicer for the categoryTry this measure:
Measure = IF ( COUNTROWS( INTERSECT( ALLSELECTED ( 'Slicer Table'[Category] ), FILTERS('Value by date 2'[Category] ) ))>0, CALCULATE ( SUM ( 'Value by date 2'[Value] ), DATEADD ( DimDate[Date], - [Value Parameter], DAY ) ), CALCULATE ( SUM ( 'Value by date 2'[Value] ), DATEADD ( DimDate[Date], 0, DAY ) ) )________________________
Did I answer your question? Mark this post as a solution, this will help others!.
Click on the Thumbs-Up icon on the right if you like this reply 🙂
- amitchandak
Super User
IAA , Try like
Measure =
var _1 =ALLSELECTED('Slicer Table'[Category])
return
sumx( all('Slicer Table'[Category]) , if('Value by date 2'[Category] in _1 ,
CALCULATE (SUM( 'Value by date 2'[Value] ) , DATEADD(DimDate[Date],-[Value Parameter],DAY)),
CALCULATE (sum('Value by date 2'[Value]) , DATEADD(DimDate[Date],0,DAY))))- IAA
Helper I
Thank you amitchandak ,
Unfortunately, the if-statement does not work in this Dax formula. Any idea how to fix this?