The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
I tried to get data from onother table (there is not relationship between them) with such measure-
PROJEKTS_DIM =
LOOKUPVALUE(
'DimensionSetEntry (3)'[PROJEKTS],
'DimensionSetEntry (3)'[Dimension_Set_ID],GL_Entry[Dimension_Set_ID],"-")
But seems like it doesn't work correctly, maybe, becouse it takes first of entries with same ID which is empty.
Please give me some advise - how to get correct data.
Many thanks in advance!
Solved! Go to Solution.
@GINMED , Try a new column like
Maxx(filter('DimensionSetEntry (3)', 'DimensionSetEntry (3)'[Dimension_Set_ID] = GL_Entry[Dimension_Set_ID] && not(isblank('DimensionSetEntry (3)'[PROJEKTS])) ),'DimensionSetEntry (3)'[PROJEKTS])
@GINMED , Try a new column like
Maxx(filter('DimensionSetEntry (3)', 'DimensionSetEntry (3)'[Dimension_Set_ID] = GL_Entry[Dimension_Set_ID] && not(isblank('DimensionSetEntry (3)'[PROJEKTS])) ),'DimensionSetEntry (3)'[PROJEKTS])