Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hello everyone,
Here is my sample data. Please only consider 2 sheets "Contact" and "General Info" (my 2 tables in Power BI).
I have a slicer created from 'General Info'[Store Name].
Assuming a random Store has been selected from that slicer, I'd like to create some measures that can fill in/answer the information to every "x" from the table below.
Each x represents a Card Visual.
Expected Result:
Name | Phone | |
Primary Customer Service | Emily | 115 |
Secondary Customer Service | N/A | N/A |
General Manager | Matthew | 115-8 |
Is there a way to create such Measures to put in Card visuals? Please can anyone advise? Thank you so so much!!!!!
Update on answer:
The answer is the combination between this calculated column
Phone Number = CALCULATE(FIRSTNONBLANK(Contact[Phone], Contact[Phone]), ALLEXCEPT(Contact, Contact[Store], Contact[Name]))
and this measure:
Secondary Phone = VAR temp = CALCULATE(MAX(Contact[Phone Number]), FILTER(Contact, Contact[Contact Type] = "Secondary Customer Service" && Contact[Store] = SELECTEDVALUE('General Info'[Column1]))) RETURN IF(ISBLANK(temp), "N/A", temp)
Solved! Go to Solution.
@trdoan ,
Create 6 measures using DAX as below:
Primary Name = VAR temp = CALCULATE(MAX(Contact[Name]), FILTER(Contact, Contact[Contact Type] = "Primary Customer Service" && Contact[Store] = SELECTEDVALUE('General Info'[Column1]))) RETURN IF(ISBLANK(temp), "N/A", temp) Primary Phone = VAR temp = CALCULATE(MAX(Contact[Phone]), FILTER(Contact, Contact[Contact Type] = "Primary Customer Service" && Contact[Store] = SELECTEDVALUE('General Info'[Column1]))) RETURN IF(ISBLANK(temp), "N/A", temp) Secondary Name = VAR temp = CALCULATE(MAX(Contact[Name]), FILTER(Contact, Contact[Contact Type] = "Secondary Customer Service" && Contact[Store] = SELECTEDVALUE('General Info'[Column1]))) RETURN IF(ISBLANK(temp), "N/A", temp) Secondary Phone = VAR temp = CALCULATE(MAX(Contact[Phone]), FILTER(Contact, Contact[Contact Type] = "Secondary Customer Service" && Contact[Store] = SELECTEDVALUE('General Info'[Column1]))) RETURN IF(ISBLANK(temp), "N/A", temp) General Manager Name = VAR temp = CALCULATE(MAX(Contact[Name]), FILTER(Contact, Contact[Contact Type] = "General Manager" && Contact[Store] = SELECTEDVALUE('General Info'[Column1]))) RETURN IF(ISBLANK(temp), "N/A", temp) General Manager Phone = VAR temp = CALCULATE(MAX(Contact[Phone]), FILTER(Contact, Contact[Contact Type] = "General Manager" && Contact[Store] = SELECTEDVALUE('General Info'[Column1]))) RETURN IF(ISBLANK(temp), "N/A", temp)
You may refer to the appendix.
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@trdoan ,
Create 6 measures using DAX as below:
Primary Name = VAR temp = CALCULATE(MAX(Contact[Name]), FILTER(Contact, Contact[Contact Type] = "Primary Customer Service" && Contact[Store] = SELECTEDVALUE('General Info'[Column1]))) RETURN IF(ISBLANK(temp), "N/A", temp) Primary Phone = VAR temp = CALCULATE(MAX(Contact[Phone]), FILTER(Contact, Contact[Contact Type] = "Primary Customer Service" && Contact[Store] = SELECTEDVALUE('General Info'[Column1]))) RETURN IF(ISBLANK(temp), "N/A", temp) Secondary Name = VAR temp = CALCULATE(MAX(Contact[Name]), FILTER(Contact, Contact[Contact Type] = "Secondary Customer Service" && Contact[Store] = SELECTEDVALUE('General Info'[Column1]))) RETURN IF(ISBLANK(temp), "N/A", temp) Secondary Phone = VAR temp = CALCULATE(MAX(Contact[Phone]), FILTER(Contact, Contact[Contact Type] = "Secondary Customer Service" && Contact[Store] = SELECTEDVALUE('General Info'[Column1]))) RETURN IF(ISBLANK(temp), "N/A", temp) General Manager Name = VAR temp = CALCULATE(MAX(Contact[Name]), FILTER(Contact, Contact[Contact Type] = "General Manager" && Contact[Store] = SELECTEDVALUE('General Info'[Column1]))) RETURN IF(ISBLANK(temp), "N/A", temp) General Manager Phone = VAR temp = CALCULATE(MAX(Contact[Phone]), FILTER(Contact, Contact[Contact Type] = "General Manager" && Contact[Store] = SELECTEDVALUE('General Info'[Column1]))) RETURN IF(ISBLANK(temp), "N/A", temp)
You may refer to the appendix.
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @v-yuta-msft , thanks for your help and everything worked perfectly!
However, may I ask another question. I noticed in my real data there's chance where a person might hold different titles and his/her information might be left blank in any other positions but the first one. Is there a way to fill in the same kind of information provided in the first postion?
Store | Contact Type | Name | Phone |
B | Primary Customer Service | Olly | 547-5 |
B | Secondary Customer Service | Olly |
I have removed the phone number in the Secondary Customer Service in my Sample Data to imitate the scenario. Is there a way to get those measures you've written for me to return automatically the same phone number for all positions that Olly (or anyone) holds if they're left blank?
Thank you so so much!
@trdoan ,
Just create a new calculate column like below and use the new calculate column in measures above:
Phone Number = CALCULATE(FIRSTNONBLANK(Contact[Phone], Contact[Phone]), ALLEXCEPT(Contact, Contact[Store], Contact[Name]))
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @v-yuta-msft , thanks again for your help! However, it seems to work in your file but not mine.
Here is the link to my pbi file. Please can you check what's wrong with it that the calculated column didn't give me the right result like in the pic you posted. My calculated column and yours are completely identical.
Thanks so muchhhh!
@trdoan ,
Use measures:
Phone Number = CALCULATE(LASTNONBLANK(Contact[Phone], TRUE()), ALLEXCEPT(Contact, Contact[Store], Contact[Name]))or
Phone Number = CALCULATE(MAX(Contact[Phone]), ALLEXCEPT(Contact, Contact[Store], Contact[Name]))instead.
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Your 'Each x represents a Card Visual.' table didn't show up.
Looking at the stated requirements, can't you use a multi-row card to display the contact details? As long as you have the relationship set up correctly, the slicer selects the store and the card displays the details.
Hi @HotChilli there is no table that is "Each x represents a Card visual" from my data. I merely tried to show what my expected result is supposed to be.
I have hundred of contact types and names in my real data. A Card visual seems to be of a better choice for me than a multi-row card because multi-row card seems to me a clutter of information and I want to display only 1 Store's contact details at a time
But thanks for your suggestion.
You're confusing me.
The multi-row card would display the contact details for only one store at a time, once the store has been selected in a separate slicer.
It's not a clutter, it works very well, almost perfectly for your requirement i think.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
94 | |
90 | |
84 | |
70 | |
49 |
User | Count |
---|---|
143 | |
121 | |
112 | |
58 | |
57 |