Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join 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.

Reply
santhoshacc
Frequent Visitor

Help me on the below query

Hi ,

 

Kinldy help me  on this query.

 

 

I am trying to get the all rows which under date range. I am using the below query  it not shoing any result.

 

Result = CALCULATE( COUNTROWS(TimeSlicer),FILTER(ALLSELECTED(TimeSlicer),
format((TimeSlicer[Date].[Date]),"YYYY/MM/DD") <=
 
FORMAT( ([Min]),"YYYY/MM/DD") &&
format((TimeSlicer[Date].[Date]),"YYYY/MM/DD") >=
FORMAT( ([MAX]),"YYYY/MM/DD")))

 

Thanks,

Santhsoh

4 REPLIES 4
v-qiuyu-msft
Community Support
Community Support

Hi @santhoshacc,

 

If you put the date column in the slicer, you can create a measure simply like below: 

 

Measure = CALCULATE(COUNTROWS('Table1'),ALLSELECTED(Table1))
 
e3.PNG

 

Best Regards,
Qiuyun Yu 

Community Support Team _ Qiuyun Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi ,

 

Thank you !

 

But i am takeing the  value of the all , year ,month,day  from slicer (means 3 slicers: 1.yearvalue 2. month value , 3.day value.

 

i need send to these three value as date ,then i will get the result by using date.

 

 

Result = CALCULATE(COUNTROWS(TimeSlicer),filter(ALL(TimeSlicer), DATESBETWEEN(
 
(TimeSlicer[Date]),

DATEVALUE(date(SELECTEDVALUE(TimeSlicer[Year]),SELECTEDVALUE(TimeSlicer[Month]),SELECTEDVALUE(TimeSlicer[Day]))),


DATEVALUE(DATE(SELECTEDVALUE(End_TimeSlicer[EYear]),SELECTEDVALUE(End_TimeSlicer[EMonth]),SELECTEDVALUE(End_TimeSlicer[EDay]))))))

 

Thanks,

Santhosh.

Hi @santhoshacc,

 

Not sure what you mean. The measure provided before can work with three slicers. Please see attached pbix. 

 

Please share your sample pbix file and tell us your desired output. 

 

Best Regards,
Qiuyun Yu 

Community Support Team _ Qiuyun Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
santhoshacc
Frequent Visitor

Hi,

 

Please help on the below query.

 

I am taking the value from slicer and passed into query. But is not working for me ,it says like conversion error (data converion).

 

Comparing the sliver value with Date filed in date table.

 

Result = CALCULATE(COUNTROWS(TimeSlicer),filter(all(TimeSlicer), DATESBETWEEN((TimeSlicer[Date]),

DATEVALUE(date(SELECTEDVALUE(TimeSlicer[Year]),SELECTEDVALUE(TimeSlicer[Month]),SELECTEDVALUE(TimeSlicer[Day]))),


DATEVALUE(DATE(SELECTEDVALUE(End_TimeSlicer[EYear]),SELECTEDVALUE(End_TimeSlicer[EMonth]),SELECTEDVALUE(End_TimeSlicer[EDay]))))))

Thanks,

Santhosh.

 

 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.