Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
HI,
New to powerbi and still learning, thanks for having me.
I have a column in my excel files that works out networkdays.
However, there are some real outliers that I need to remove.
For example if there is no closed date the result of networkdays is -31322
So when I use a card visual to calcualte the average number of networkdays I am getting a very skewed result.
When I goto the Filters on that visual, I am not able to change anything. Is there a way I can filter so it only calculates results greater than zero.
Thanks,
Appreciate the help
HI @CrackerBen
For your case, you could just create a measure and use filter in it, please refer to this blog:
https://www.sqlbi.com/articles/filter-arguments-in-calculate/
Regards,
Lin
Hi @CrackerBen ,
Try to use the below calculate measure:
calculate(average(your_networkdays_column),filter(your_table,your_networkdays_column > 0))
Aiolos Zhao