Forum Discussion
SBGoh
Helper I
2 years agoFilter rows seems not working in dropdown list
Hi, I have 3 Sales order tables below and they have the following relationship: SO_HEADER.SO_NUM = SO_ITEM.SO_NUM (1 to Many) SO_ITEM.SO_NUM = STATUS.SO_NUM and SO_ITEM.POS_NUM = STATUS.POS_NUM (...
amitchandak
Super User
2 years agoSBGoh , Create a new concatenated column in the Item and status tables and join those
New column in DAX
Key = [SO_NUM] & "-" & [POS_NUM]
SBGoh
Helper I
2 years agoHi amitchandak , yes I actually create a composite key that concatenate the 2 fields [SO_NUM] & "-" & [POS_NUM] in both tables. I create a 1:1 relationship. It is incorrect ? Table SO_ITEM has more records because only table STATUS is filtered.
- amitchandak2 years ago
Super User
SBGoh , Change that 1- Many from Status to item, it should work