Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi,
I have two tables Sales and Product. The Sales table is a transactional table, so it has columns like Order No, Order Line No, ProductKey, Value etc..
The Product table just has one column called ProductKey
The two tables are joined together by ProductKey
I want to add another column to the Sales table by doing a calculated column or measure (whichever one is best) which I want to call "Special Product" where if the ProductKey from the Sales table exists in the Product table then label this as Yes else if it does not exists then No
Thanks
Solved! Go to Solution.
@AvPowerBI Maybe:
Column =
VAR __ProductKey = [ProductKey])
VAR __Match = COUNTROWS(FILTER('Product',[ProductKey] = __ProductKey))
RETURN
IF(ISBLANK(__Match),"No","Yes")
@AvPowerBI Maybe:
Column =
VAR __ProductKey = [ProductKey])
VAR __Match = COUNTROWS(FILTER('Product',[ProductKey] = __ProductKey))
RETURN
IF(ISBLANK(__Match),"No","Yes")
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
86 | |
78 | |
54 | |
39 | |
35 |
User | Count |
---|---|
102 | |
84 | |
48 | |
48 | |
48 |