The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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.