Solved
Forum Discussion
DonLarson
2 days agoQrew Elite
Dawn,
I like to do these in stages so I can follow my logic
var text ParseOne = Right([PICC Request Status],"]");
var text ParseTwo = Right($ParseOne, "-");
$ParseTwo
Give this a try.
- DawnRene32 days agoQrew Trainee
Don, that was close. But it pulled out the oldest status, not the most recent status, with a space before it.
- MarkShnier__You24 hours ago
Qrew Legend
Tag teaming with my buddy Don,
You are doing two things that are unusual, the prepending newest at the top and using the entries on a separate line causing those dashes.
Try this ridiculous looking formula
NotLeft(SearchAndReplace(Left(NotLeft([PICC Request Status],"]"),"["),"-",""),2)
- DonLarson23 hours agoQrew Elite
Dawn,
Do it Mark's way and you will get the first entry from the bottom.