Forum Discussion
Filtering Data with DAX
The formula seems fine. If possible please share a sample pbix file after removing sensitive information.
We need to April formula to check why it is not working.
Also, Try to use startofmonth(DATE[Date]) in place of date(2020,02,01) and see if works.
Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks.
amitchandakThanks for your contribution. Please see April formula as follows:
FTEACT202004:=CALCULATE(
SUMX('Upload Sheet';[Total FTE]);
FILTER('Upload Sheet';
AND([Date of entry]<=DATE(2020;4;1);
OR(
ISBLANK([Date employee left]);
[Date employee left]>=date(2020;4;1))
)
))
Using STARTOFMONTH in the formula doesn't show any change in the result:
FTEACT202002:=CALCULATE(
SUMX('Upload Sheet';[Total FTE]);
FILTER('Upload Sheet';
AND(STARTOFMONTH('Upload Sheet'[Date of entry])<=DATE(2020;2;1);
OR(
ISBLANK([Date employee left]);
STARTOFMONTH('Upload Sheet'[Date employee left])>=date(2020;2;1))
)
))
I cannot use STARTOFMONTH for the right section of the term (DATE(2020;1;1)) since I do not refer to a single date column. However, I use fixed dates (2020/1/1, 2020/2/1...) to filter the data. These measures are used as columns in a result table (as shown in the screenshot above). Any guess why it doesn't work? Thanks in advance.