Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi, I'm trying to create a custom column for inventory purposes. There are two relevant columns I need to include in the formula:
The data I'm bringing into PQ is already populated with some of this data, but I want the custom column to populate via a check on the existing data. The logic would be something like this:
How can I create a custom column formula to capture this logic? I'm having some difficulty composing it with the M language.
Solved! Go to Solution.
Hi @DDesmond
You already have it
if [Out of Possession] <> null then [Out of Possession]
else if [Product_EUD] = null then false
else true
Hi @DDesmond
You already have it
if [Out of Possession] <> null then [Out of Possession]
else if [Product_EUD] = null then false
else true