Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreThe FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now
Hi all,
I have 3 tables from Servicenow
one is for Assessment questions and it has all the incidents and Request numbers, and also Assignment groups for ONLY incidents instances.
I have another one with SC_Task , that has all the assignment groups for the Requests , as the one of assenstment questions all the REquests are with assignment group as blank
I have tried making a relationship between the id numbers of the first table, and the Req number of the SC_task table, but when i select in the visual the assignment group, it only gives me the Requests assignment groups and not the incidents ones.
How i have to do to have both Incidents and Requests with their assignment groups ?
thanks for your help and i hope my explanation is enough
Solved! Go to Solution.
Hi @Anonymous ,
You can create a calculated table using DAX below.
New table= UNION(
SELECTCOLUMNS('assestment', "Incident",[incident],"Assignment group" ,[assignment group]),
SELECTCOLUMNS('SC_Task', "Incident",[Incident],"Assignment group" ,[Assignment group]))
If you don't need the rows that contain BLANK or empty values, you can filter these values out in Data view.
Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
So in summary:
I have assestment table with
incident assignment group
INC000123 ETO.EESDS.Spain
REQ000123 Empty
And a SC_Task Table
Incident Assignment group
REQ000123 ETO.EES.DS.France
So i want to achieve
incident assignment group
INC000123 ETO.EESDS.Spain
REQ000123 ETO.EES.DS.FRance
Hi @Anonymous ,
You can create a calculated table using DAX below.
New table= UNION(
SELECTCOLUMNS('assestment', "Incident",[incident],"Assignment group" ,[assignment group]),
SELECTCOLUMNS('SC_Task', "Incident",[Incident],"Assignment group" ,[Assignment group]))
If you don't need the rows that contain BLANK or empty values, you can filter these values out in Data view.
Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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 |
|---|---|
| 52 | |
| 38 | |
| 37 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 67 | |
| 67 | |
| 34 | |
| 32 | |
| 29 |