I’m pretty sure there’s a way to do what you want, but your description and screenshot only covered part of your setup. Is it a case where the date in {Dosing Date SPS}
is returned if the {Tank}
value is SPS, and a date from a different field is returned if it’s Nano? If so, your setup could look something like this:
![Screen Shot 2019-08-16 at 11.14.35 PM.png Screen Shot 2019-08-16 at 11.14.35 PM.png](/t5/image/serverpage/image-id/4713iFD28F70E5C203FC3/image-size/large?v=v2&px=999)
The formula in the {Dosing Date}
field is this (tweak the timezone setting as needed):
SET_TIMEZONE(
SWITCH(
Tank,
"SPS", {Dosing Date SPS},
"Nano", {Dosing Date Nano}
),
"America/Chicago"
)
When those records are looked up in another table, the tank and appropriate dosing date can be pulled in via a Lookup field:
![48%20PM 48%20PM](/t5/image/serverpage/image-id/4716i71DEDDCA159A4396/image-size/large?v=v2&px=999)
You also mentioned something about “the earliest date and the latest date,” which I’m unsure how to interpret, but I hope this points you in the right direction.