The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Am trying to do the following in m query but am getting an error any help would be great;
if [Product] = "15679" and [Region] = "South" or "North" or "West" then 1 else 0
Error i recieve is the following;
Expression.Error: We cannot convert the value "West" to type Logical.
Solved! Go to Solution.
Hi @Anonymous
Try this
if [Product] = "15679" and ([Region] = "South" or [Region] = "North" or [Region] = "West") then 1 else 0
Phil
If I answered your question please mark my post as the solution.
If my answer helped solve your problem, give it a kudos by clicking on the Thumbs Up.
Proud to be a Super User!
Hi @Anonymous
Try this
if [Product] = "15679" and ([Region] = "South" or [Region] = "North" or [Region] = "West") then 1 else 0
Phil
If I answered your question please mark my post as the solution.
If my answer helped solve your problem, give it a kudos by clicking on the Thumbs Up.
Proud to be a Super User!