MichaelMurphree
4 years agoQrew Member
Nested "IF" statements
I'm trying to stay away from code and just use the native functionality of QB for a sales CRM. I may be stuck. Here's what I have:
If(
[Stage]="Lead",0.1,
[Stage]="Gained Access",0.2,
[Stage]="Analysis",0.3,
[Stage]="Proposed",0.5, <any way to make this discretionary, i.e., the rep enters his own #?
[Stage]="Stalled",0.05,
[Stage]="Closed/Won",1,
[Stage]="Closed/Lost",0
)
This is for tracking a confidence/probability level of closing a sales opportunity. I'd like to default the confidence factor for everything except a status of "proposed" and make that discretionary for the sales rep.
------------------------------
Michael Murphree
------------------------------
ā
If(
[Stage]="Lead",0.1,
[Stage]="Gained Access",0.2,
[Stage]="Analysis",0.3,
[Stage]="Proposed",0.5, <any way to make this discretionary, i.e., the rep enters his own #?
[Stage]="Stalled",0.05,
[Stage]="Closed/Won",1,
[Stage]="Closed/Lost",0
)
This is for tracking a confidence/probability level of closing a sales opportunity. I'd like to default the confidence factor for everything except a status of "proposed" and make that discretionary for the sales rep.
------------------------------
Michael Murphree
------------------------------
ā