IF Type = Project join Type+ID+"-"+PMO Project Name
If Type = Request join Type+ID+"-"+Request Name
I've tried this a couple of ways - if I select Request - it comes up as Request1000-RequestName
If I select Request then it blanks out. instead of Project1000-ProjectName
Formula
=IF(Type@row = "Rqst", JOIN(Type@row + [Rqst ID]@row + "-" + [Request Name]@row, IF(Type@row = "Proj", JOIN(Type@row + [Rqst ID]@row + "-" + [PMO Project Name]@row))))
ultimately I want to put in if(ands( for various conditions but can't get this basic formula to work. thanks so much for your help.