I have just started learning vba and I have script that is working except for the between two values and was wondering if anyone can tell me where I'm going wrong. If I'm not providing the correct information please let me know and I'll do my best but am a complete novice. Everything else works it's just when I get to the between choices. I've tried several different variants from what I have found on-line but still it is not working.
The section in question is the Projected Total Spend Values between $30K and $150K
ElseIf [ProcurementType Id].Value = "1" And [CategoryComplex ity].Value = "Leveraged" And [ProjectedTotalS pend].Value >= "30000" And [ProjectedTotalS pend].Value < "150000" Then
[ProcurementProc ess].Value = "3 Direct Quotes"
Any help would be greatly appreciated.
The section in question is the Projected Total Spend Values between $30K and $150K
ElseIf [ProcurementType Id].Value = "1" And [CategoryComplex ity].Value = "Leveraged" And [ProjectedTotalS pend].Value >= "30000" And [ProjectedTotalS pend].Value < "150000" Then
[ProcurementProc ess].Value = "3 Direct Quotes"
Any help would be greatly appreciated.
Comment