Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin 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 new to DAX, and I'm trying to figure out the monthly percentage for our 8 systems if they were to run perfectly in the month. In Excel it's the number of days in the month since we installed the system to the current date.
157 = Sum of the Days column
13564800 = seconds/day/network feed
108518400 = This is the Perfect Seconds for the total of 8 Network feeds
or
108518400
I have a table in my PBI report called WebOps Discrepancies
Any help would be greatly appreciated.
Solved! Go to Solution.
Hi @Dallas7890 ,
In the Power BI, you can try to use:
column_day_each month
=eomonth(table[date],0)
sec/day/network feed measure=var _1=max(table[sec/day/network feed])
return
if(isinacope(table[date}),_1,sumx(all(table),table[sec/day/network feed]))
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Dallas7890 ,
In the Power BI, you can try to use:
column_day_each month
=eomonth(table[date],0)
sec/day/network feed measure=var _1=max(table[sec/day/network feed])
return
if(isinacope(table[date}),_1,sumx(all(table),table[sec/day/network feed]))
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
23 | |
11 | |
10 | |
9 | |
8 |