Forum Discussion
Help with a formula
- Anonymous6 years ago
Hi,
in Power Query, you have to
merge Anodes with NCNs, in left join mode,
expand the NCNs column in the Anodes query selecting only LotID column
add conditional column in the Anodes query setting if NCNs.LotID = null then 0 else 1
remove NCNs.LotID column
Regards
Lorenzo
Hi Anonymous ,
Try this:
Lookup = IF(LOOKUPVALUE(myTable2[Column1],myTable2[Column1],myTable1[Column1],0)=0,0,1)
Create a calculated column. If you substitute your tables for myTable2, and myTable1, this will work.
Let me know if you have any questions.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos 👍are nice too.
Nathaniel
- Anonymous6 years agoNot applicable
Nathaniel_C Thank you very much for your response I found it interesting and another question arose.
I need to add that same calculated column after week of year to the anode table, how can I do it?