We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hi,
I have 2 tables having 1 to many relationship with the ref2per table.
I' am trying to get a matrix something like below:
| name | SAP | PCS | EventBrite |
| SAP | 1 | ||
| PCS | 1 | ||
| EventBrite | 1 | 1 |
SAP and EventBrite has count 1 since person id 1 is shared between them. Same applies on the other way round. Since person id 2 has only one reference, the value is 1 for matrix EventBrite to EventBrite.
Just using the UI I'am getting the below result.
I'am still a rookie with the DAX commands, so any thoughts on how the required result can be achieved.
Thanks
Rakesh
Solved! Go to Solution.
Hi @rakesh-k01,
You can create calculated columns in ref2per table like below:
Name = RELATED('ref_table'[name])
Name(update) = var t=CALCULATE(MAX('ref2per'[ref_source_system_id]),ALLEXCEPT(ref2per,'ref2per'[personal_id]))
return
IF('ref2per'[ref_source_system_id]<> t,CALCULATE(MIN('ref2per'[Name]),ALLEXCEPT(ref2per,'ref2per'[personal_id])),
CALCULATE(MAX('ref2per'[Name]),ALLEXCEPT(ref2per,'ref2per'[personal_id])))
Best Regards,
Qiuyun Yu
Hi @rakesh-k01,
You can create calculated columns in ref2per table like below:
Name = RELATED('ref_table'[name])
Name(update) = var t=CALCULATE(MAX('ref2per'[ref_source_system_id]),ALLEXCEPT(ref2per,'ref2per'[personal_id]))
return
IF('ref2per'[ref_source_system_id]<> t,CALCULATE(MIN('ref2per'[Name]),ALLEXCEPT(ref2per,'ref2per'[personal_id])),
CALCULATE(MAX('ref2per'[Name]),ALLEXCEPT(ref2per,'ref2per'[personal_id])))
Best Regards,
Qiuyun Yu
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 54 | |
| 37 | |
| 32 | |
| 17 | |
| 15 |
| User | Count |
|---|---|
| 66 | |
| 66 | |
| 39 | |
| 34 | |
| 25 |