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 dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Background: this is for a web-based software application. Information is queried from AppInsights and centers around user actions. There are several dimension tables that filter the infromation by user group and other things
I have the following measure:
Solved! Go to Solution.
@Anonymous just wrap everything with a condition on some other measure you have on that matrix. Somthing like:
IF ( [OTHER MEASURE] <> BLANK(),
...YOUR CODE.., BLANK())
Also, regrdless, use a varibale ovet there as the engine might calculate your base measure twice.
@SpartaBI Will this still return 0 for the values I want? I still want it to return 0 for the blank ones of the users I am wanting to be in the table.
There is a calculated value that, if blank, fits the criteria of not supposed to be in the table: COUNTROWS(AppInsights), AppInsights[Event]
I tried:
@Anonymous I will pm you
@Anonymous just wrap everything with a condition on some other measure you have on that matrix. Somthing like:
IF ( [OTHER MEASURE] <> BLANK(),
...YOUR CODE.., BLANK())
Also, regrdless, use a varibale ovet there as the engine might calculate your base measure twice.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
24 | |
9 | |
7 | |
6 | |
6 |
User | Count |
---|---|
29 | |
11 | |
11 | |
10 | |
6 |