Forum Discussion
Single Date filter for Multiple Columns and add Measures
- 6 years ago
Hi Kostas ,
Here is the .pbix that you can try it again: PBIX
Put the Date filter measure in the table visual filter and set up value as 1, put the Total measure in a card visual direcrtly and it should work fine.
Best Regards,
Yingjie LiIf this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Hello amitchandak ,
thank you for the response and the article is really helpfull. Especialy the use relationship function that I didn't know about.
I understand that I need to create a date table and place the date value in the filter.
Also, I can see how I can take the count within the period that the user will select by connecting the two tables and use the USERELATIONSHIP function to create the measure but, how I will get the values before the period?
As in example one that I specified before, the perfect solution would be (Dateinfull column = Date column in date calendar table):
But I cannot use the "userelationship" function in that way.
Kostas , Usage is wrong. Can you share sample in table format and expected output.
- Kostas6 years ago
Helper IV
Hello amitchandak
Please find attached the table (it is the same as above).
I need to perform the calculations explained above and place them into a visual or individual cards.
The users need to be able to have a single date filter and to see the distinct count of ID's within the period that they will select.
The first example that mentioned is that I will need the distinct count of ID's that will meet two criteria:
1) The dates in the Date 1 column will be before the selected period (in the filter)
2) The dates in the Date 2 column will be either after the selected period or blank.
For Example if the user select the period 30 May to June 10 2020 the count should be 1 (ID = 4294)
I hope that make sense
ID Date1 Date2 4294 05 May 2020 04 June 2020 3392 30 May 2020 09 June 2020 4217 31 December 2020 10 January 2021 4216 31 December 2020 10 January 2021 4215 31 August 2020 10 September 2020 4214 31 August 2020 10 September 2020 4213 30 September 2020 10 October 2020 4217 31 December 2020 10 January 2021 4216 31 December 2020 10 January 2021 Thanks in advance
Kostas- v-yingjl6 years ago
Community Support
Hi Kostas ,
Based on your latest update, if I got it correctly, you can create a control measure like this and set the value as 1 to put it in the filter of the table visual:
Date filter = VAR _mindate = CALCULATE ( MIN ( 'Date'[Date] ), ALLSELECTED ( 'Date' ) ) VAR _maxdate = CALCULATE ( MAX ( 'Date'[Date] ), ALLSELECTED ( 'Date' ) ) VAR _date1 = SELECTEDVALUE ( 'Table'[Date1] ) VAR _date2 = SELECTEDVALUE ( 'Table'[Date2] ) RETURN IF ( _date1 < _mindate && _date2 < _maxdate, 1, 0 )If you want to count, just create a slimar measure and put it in the table visual:
Count = VAR _mindate = CALCULATE ( MIN ( 'Date'[Date] ), ALLSELECTED ( 'Date' ) ) VAR _maxdate = CALCULATE ( MAX ( 'Date'[Date] ), ALLSELECTED ( 'Date' ) ) VAR _date1 = SELECTEDVALUE ( 'Table'[Date1] ) VAR _date2 = SELECTEDVALUE ( 'Table'[Date2] ) RETURN SUMX ( 'Table', IF ( _date1 < _mindate && _date2 < _maxdate, 1, 0 ) )The result is like this:
Here is the sample file hopes to help you solve this issue, please try it: PBIX
Best Regards,
Yingjie LiIf this post helps then please consider Accept it as the solution to help the other members find it more quickly.
- Kostas6 years ago
Helper IV
hello v-yingjl
I can see the logic behind your code and thanks for the help.
Unfortunately when I am applying the date measure in the filter section as a way for the filter to show only the values with "1" it automatically only shows to be the advance filter and I cannot apply any values inside the box. So I cannot test it.
Any ideas why it does not let me apply any filters? When I also tried to place the measure into a slicer it did not let me to.
If you believe that is an application issue I will accept the solution as it seems that should work.
Thanks
Kostas