I'm trying to use a split function to split the data in a record. I'm not sure how to use this function as the Help files are not too easy to read. I can tell that it wants a value to split and I'm using the ":" as a demlimeter, but how do I assign it to an array variable?
Heres what I have so far. I'm probably way off, but heres what I have.
NumberVar Agents:= {tblDowntime.AgentsAffected};
StringVar TimeDown:= "{tblDowntime.TimeDown}";
NumberVar array Temp:= Split(TimeDown, ":"
NumberVar AgentDT:= (Temp[0] * 60) + (Temp[1] * Agents) / 60;
Thanx,
.:donn:.
Heres what I have so far. I'm probably way off, but heres what I have.
NumberVar Agents:= {tblDowntime.AgentsAffected};
StringVar TimeDown:= "{tblDowntime.TimeDown}";
NumberVar array Temp:= Split(TimeDown, ":"
NumberVar AgentDT:= (Temp[0] * 60) + (Temp[1] * Agents) / 60;
Thanx,
.:donn:.