Hey everyone,
I'm trying to create a label for water wells that contains the well name, date drilled, and measured depth. I've gotten them all to appear, but there are no spaces between them so it's formatted like namemeasuredepthm/d/yyy. Ideally, it would be good to either have it formatted like,
Name
Measured Depth
M/D/YY
Or
name, measured depth, m/d/yyyy
This is my current expression if that's helpful
$feature.Well_Name +""+
$feature.Max_MD +""+
Text($feature.Spud_Date, 'M/D/Y')