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

Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now

Reply
Gokul
Helper IV
Helper IV

measure filter is not working

i have two tables .. one is group and other is task... (one to many relationship)..

when i used my measure in matrix table it is not filter based on my firdt table(group) 

5 REPLIES 5
rafaelmpsantos
Responsive Resident
Responsive Resident

PLease, can you send some examples with screenshots and the measure used?

1.png2.pngAs you can see 2 pics..in 1st pic i have used (Average of task_completion_mins) which is decimal number datatype..it is filtering perfectly based on workflow...In second picture i have used my measure (AvgTurnaroundTimeForTask) it shows other unfiltered data's..

@rafaelmpsantos any idea ?

Show the measure created to do this. I think the problem is average of TIME.

@rafaelmpsantos

Measure 

AvgTurnaroundTimeForTask = var dayNo=INT(AVERAGE(Query1[task_completion_mins])/1440)
var hourNo=INT(MOD((AVERAGE(Query1[task_completion_mins])),1440)/60)
var minuteNO=MOD(MOD((AVERAGE(Query1[task_completion_mins])),1440),60)
var days=if(dayNo>1,dayNO&" Days ",if(dayNo=1,dayNO&" Day "))
var hrs=if(hourNo,FORMAT(hourNo,"#0")&" Hrs ",if(hourNo=1,FORMAT(hourNo,"#0")&" Hr "))
var mins=if(minuteNO>1,FORMAT(minuteNo,"#0")&" Mins",if(minuteNO=1,FORMAT(minuteNo,"#0")&" Min",if(minuteNO=0,"")))

return CONCATENATE(days,CONCATENATE(hrs,mins))
@rafaelmpsantos any other reequirements needed??

 

Helpful resources

Announcements
OCT PBI Update Carousel

Power BI Monthly Update - October 2024

Check out the October 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

October NL Carousel

Fabric Community Update - October 2024

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