March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello!
I have 2 tables, linked by KEY field ("Ключ" on the picture).
I need to add column, which shows the firstnonblank value Linked Issues: Key from Linked Issues table.
How can I do it?
I have tried this
VAR t = CALCULATE(FIRSTNONBLANK('Linked Issues'[Linked Issues: Key], not(ISBLANK('Linked Issues'[Linked Issues: Key]))), FILTER(ALL('Linked Issues'), [Ключ] = Issues[Ключ] && 'Linked Issues'[LinkedProject]="CELO"))
t = CALCULATE(FIRSTNONBLANK('Linked Issues'[Linked Issues: Key], true()), FILTER('Linked Issues', [Ключ] = Issues[Ключ] && 'Linked Issues'[LinkedProject]="CELO"))
It does not work
Solved! Go to Solution.
@Anonymous , Try a new column like
Minx(filter(relatedtable('Linked Issues'), not(isblank('Linked Issues'[Linked Issues: Key])), 'Linked Issues'[Linked Issues: Key])
Ok! This works!
What if I what to get the first Linked Issues: Key value from rows, linked by Linked Issues.Key= Issues.ParentKey?
@Anonymous , Try a new column like
Minx(filter(relatedtable('Linked Issues'), not(isblank('Linked Issues'[Linked Issues: Key])), 'Linked Issues'[Linked Issues: Key])
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
108 | |
75 | |
53 | |
52 | |
44 |
User | Count |
---|---|
160 | |
112 | |
69 | |
61 | |
50 |