Forum Discussion
Creating a calculated column populating it's values based on an related, filtered table (x2)
Hi,
I am trying to create a column which values are based on a value present in a related table, and a category in a table related to that related table.
Looking at the model above, I am trying to assign a product category based which Kiosk[kiosk_concept] it has sales in.
I've tried
IF (
COUNTAX('Daily Sales', RELATED(Kiosks[Kiosk_Concept]) IN {"abc", "xyz"}) > 0
,1
,0
)
But it doesn't seem to work correctly.
SOLVED:
I've put a measure in the 'Daily Sales' table the returns related value from Kiosks table:LASTNONBLANK(SELECTCOLUMNS(RELATEDTABLE(Kiosks),"kiosk_concept",[Kiosk_Concept]),TRUE())This seems to work when referred to in the products table.
2 Replies
- Greg_DecklerCommunity Champion
BachDinh Well, if you are trying to create that colum in Products table then the Kiosks table is not really related to the Products table. Try changing your Kiosks to Daily Sales relationship to "Both" instead of a single direction.
- BachDinhHelper I
SOLVED:
I've put a measure in the 'Daily Sales' table the returns related value from Kiosks table:LASTNONBLANK(SELECTCOLUMNS(RELATEDTABLE(Kiosks),"kiosk_concept",[Kiosk_Concept]),TRUE())This seems to work when referred to in the products table.