Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe'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
So going for my second post hope help is as fast as the first one.
I am trying to create a new column in a table based on values in 2 other columns and then populating the new column with data from a 4th column.
Here is an example of the data:
table = Gantt Chart table
If issue type = epic use parent link to find the parent-key in issue_key and then use the summary of the parent_link and theparent_link value and populate it in a new column called parent_summary.
| issue_key | summary | parent_link | issue_type | parent_summary (New column) |
| GDES-20654 | Do some work | Story | ||
| GDES-56713 | Build Waggle | GDES-66684 | Epic | GDES-66684: Waggle Launch |
| GDES-66684 | Waggle Launch | Initiative | ||
| GDES-56142 | test my work | Story | ||
| GDES-55651 | Build the widget | GDES-57785 | Epic | GDES-57785: Widget Creation |
| GDES-57785 | Widget creation | Initiative |
Solved! Go to Solution.
Parent Summary =
IF(
'Table'[issue_type] = "Epic",
VAR _parent_link = 'Table'[parent_link]
VAR _summary =
CONCATENATEX(
FILTER(
'Table',
'Table'[issue_key] = _parent_link
),
'Table'[summary]
)
RETURN
_parent_link & ": " & _summary
)
In case it answered your question please mark this as a solution for community visibility. Appreciate Your Kudos 🙂
Parent Summary =
IF(
'Table'[issue_type] = "Epic",
VAR _parent_link = 'Table'[parent_link]
VAR _summary =
CONCATENATEX(
FILTER(
'Table',
'Table'[issue_key] = _parent_link
),
'Table'[summary]
)
RETURN
_parent_link & ": " & _summary
)
In case it answered your question please mark this as a solution for community visibility. Appreciate Your Kudos 🙂
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 |
|---|---|
| 53 | |
| 36 | |
| 33 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 72 | |
| 72 | |
| 38 | |
| 35 | |
| 26 |