Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Amardeep100115
Post Prodigy
Post Prodigy

Define measure for data

Hi

 

I wish to have one measure which filter one region from results and show test message or blank cell. 

 

below table has required details and "Results" column should be the measure results

 

Table got linked with Emp ID and Date in fact table

 

RegionEmpIDUTZResults
CALA110%10%
GGM250%50%
EMEA345%UTZ not available
    
AB
1 ACCEPTED SOLUTION

Hi ,

 

If you want 0 instead of the string the below measure can be used:

Result with 0 = SWITCH(True(),RegionTable[Region] = "EMEA",0,CALCULATE(AVERAGE(RegionTable[UTZ]),ALLEXCEPT(RegionTable,RegionTable[Region])))

 

As you need the calculation to happen against each value, I am afraid the measure won't do in this case.

You can find the file here for your reference and it contains both ways with string and 0.

 

Thanks

View solution in original post

5 REPLIES 5
PC2790
Community Champion
Community Champion

Hi @Amardeep100115 ,

 

You can create a calculated column and use the following DAX:

Result =
SWITCH (
    TRUE (),
    RegionTable[Region] = "EMEA", "UTZ not available",
    FORMAT (
        CALCULATE (
            AVERAGE ( RegionTable[UTZ] ),
            ALLEXCEPT ( RegionTable, RegionTable[Region] )
        ),
        "Fixed"
    )
)

The result would be something like:

PC2790_0-1611382378795.png

I hope this works for you

Could you please use zero instate of  

"UTZ not available"

so t will show results in number also please help with meaure not column. 

 

If possible please share PBIX file

 

Thanks in advance 

AB

Hi ,

 

If you want 0 instead of the string the below measure can be used:

Result with 0 = SWITCH(True(),RegionTable[Region] = "EMEA",0,CALCULATE(AVERAGE(RegionTable[UTZ]),ALLEXCEPT(RegionTable,RegionTable[Region])))

 

As you need the calculation to happen against each value, I am afraid the measure won't do in this case.

You can find the file here for your reference and it contains both ways with string and 0.

 

Thanks

PhilipTreacy
Super User
Super User

Hi @Amardeep100115 

Sorry it's not clear what you want. Can you please provide the rest of your data and a clearer explanation of what you are trying to do.

Regards

Phil



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


Hi 

 

I have table like shared above query and  wish to have a measure which gives me an average of UTZ column and i want to create measure which will give me average of those rows which don't have EMEA in region column.

 

rest all regions average should be replact in measure

 

Hope i am clear on my query

AB

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.