Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello,
I am unable to use the date selected from the slicer into my dax formula. The value returned is blank.
Note that my 'date' column is called "full formar for period". I created a continuous date column which i called "full format for period"
Solved! Go to Solution.
Hi @kaileena
in this case SELECTEDVALUE returns blank as it cannot find a single value of the date because you selecting a period (a month or multiple months) not a single date. Therefore as long as there is no blank dates in the Measurement Table, the filtered table will be empty. Therefore you need to use ALLSELECTED or VALUES to retrieve the selected dates, then you can use IN operator to check if current row date inside CALCULATE filter is within the selected period. Please try the following with either ALLSELECTED or VALUES
Value for Slicer Selected Month Budget Spent =
CALCULATE (
SUM ( 'Measurement'[Value] ),
'Measurement'[Type] = "Budget Spent",
Measurement[Full Format for Period]
IN VALUES ( ForSlicer[Full Format for Period] )
)
Hi @kaileena
in this case SELECTEDVALUE returns blank as it cannot find a single value of the date because you selecting a period (a month or multiple months) not a single date. Therefore as long as there is no blank dates in the Measurement Table, the filtered table will be empty. Therefore you need to use ALLSELECTED or VALUES to retrieve the selected dates, then you can use IN operator to check if current row date inside CALCULATE filter is within the selected period. Please try the following with either ALLSELECTED or VALUES
Value for Slicer Selected Month Budget Spent =
CALCULATE (
SUM ( 'Measurement'[Value] ),
'Measurement'[Type] = "Budget Spent",
Measurement[Full Format for Period]
IN VALUES ( ForSlicer[Full Format for Period] )
)
i did. i think the problem comes from how my tables are connected. (Or not connected. )
This is the current outcome.it does not show the correct value. i will explain.
this is the model. The value i need to aggregate is in the table "measurement" which has a column called "full format for period". For a different use case, i created the "ForSlicer" table (
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
9 | |
8 | |
8 | |
7 |
User | Count |
---|---|
13 | |
12 | |
11 | |
11 | |
8 |