Forum Discussion
Anonymous
3 years agoNot applicable
if Function in Custom Column - Why won't my Function accurately calculate the results?
I have an if Function that is working fine in terms of being able to calculate the results with no errors. The problem is I am currently learning PowerBI and Power Query through projects at work and ...
- 3 years ago
Try changing your &'s to and... i.e.
= if [CURR_STG_NAME]="Transacted - Lost" and [SPEC_STG_CD]="Marketing Lead" and [Days in Sale Cycle Stages]="0" then "Exclude" else "Include"
cpearson
3 years agoResolver I
Try changing your &'s to and... i.e.
= if [CURR_STG_NAME]="Transacted - Lost" and [SPEC_STG_CD]="Marketing Lead" and [Days in Sale Cycle Stages]="0" then "Exclude" else "Include"
Anonymous
3 years agoNot applicable
Thank you!! That worked!