Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
I've got working script in R
Two data frames: zerowy_nazwa5, zatwierdzony_nazwa5
and working 2 lines:
setdiff(zatwierdzony_nazwa5, zerowy_nazwa5)
setdiff(zerowy_nazwa5, zatwierdzony_nazwa5)
how i implement this in PowerBi?
Solved! Go to Solution.
Hi@ Waldek
After my research,You may try to do these follow my steps like below:
Step 1:
Add two columns
Column = IF(Table3[A] in VALUES(Table3[B]),BLANK(),Table3[A]) Column 2 = IF(Table3[B] in VALUES(Table3[A]),BLANK(),Table3[B])
Step 2:
Add a calculate table
Table 2 = FILTER(UNION(VALUES(Table3[Column]),VALUES(Table3[Column 2])),ISBLANK(Table3[Column] )=FALSE())
Result:
Best Regards,
Lin
Hi@ Waldek
After my research,You may try to do these follow my steps like below:
Step 1:
Add two columns
Column = IF(Table3[A] in VALUES(Table3[B]),BLANK(),Table3[A]) Column 2 = IF(Table3[B] in VALUES(Table3[A]),BLANK(),Table3[B])
Step 2:
Add a calculate table
Table 2 = FILTER(UNION(VALUES(Table3[Column]),VALUES(Table3[Column 2])),ISBLANK(Table3[Column] )=FALSE())
Result:
Best Regards,
Lin
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.