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.
Hi
I'm new to power bi and i'm trying to replicate a chart which is created in power bi.
the line chart which is created in tableau contains 2 calculated fields
1) max per level = window_max(count of errors/total(count of errors))
2)exclude_lod = {exclude timestamp : count of errors}
In rows the timestamp column is placed at hour level
In column shelf max per level, region name,exclude_lod columns are placed in the mentioned order
in text count of errors is placed.
I trying this chart to recreate in power bi
when using a line chart and placing timestamp values in y axis I'm getting count of timestamp so i have tried using matrix visual.
I need help in creating those calculated columns and using the right chart for creating the visual
Thanks for your help in advance
Can anyone help me with this
Hi @Meera556 ,
Please try these measures:
Max Per Level =
MAXX(
ErrorsTable,
DIVIDE(COUNT(ErrorsTable[Errors]), CALCULATE(COUNT(ErrorsTable[Errors]), ALL(ErrorsTable)))
)
Exclude LOD =
CALCULATE(
COUNT(ErrorsTable[Errors]),
ALLEXCEPT(ErrorsTable, ErrorsTable[RegionName])
)
If this doesn't work or I've misunderstood your question, please consider posting some sample data with the expected output.
How to provide sample data in the Power BI Forum
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum -- China Power BI User Group
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 |
---|---|
63 | |
59 | |
56 | |
38 | |
29 |
User | Count |
---|---|
82 | |
62 | |
45 | |
41 | |
40 |