Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi All,
if i have the following table like this
how the calculate the number of "defect " that found more than 30 days ago, please help
Solved! Go to Solution.
You have try a measure like
calculate(countrows(table), filter(table,Table[Date]<=today()-30))
calculate(countrows(table), filter(all(table),Table[Date]<=today()-30))
calculate(countrows(table), filter(all(table),Table[Date]<=<=selectedvalue(Date[Date])-30))
You have try a measure like
calculate(countrows(table), filter(table,Table[Date]<=today()-30))
calculate(countrows(table), filter(all(table),Table[Date]<=today()-30))
calculate(countrows(table), filter(all(table),Table[Date]<=<=selectedvalue(Date[Date])-30))
Hi @MostafaGamal ,
Few questions:
Try posting a sample input with expected output. This will help in understanding the issue clearly.
Thanks,
Pragati
I mean the date the defect was found, i want to know the no. of defects that has been on the system for more than 30 days
not the defects that found in last 30 days, i expect a table with no. of defects againts department but they must be found in the system for more than 30 days
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.