Hi Terry,
There's a specific solution (ie handling numbers > 15 digits) and a generic solution (allowing the programmer to specify the type.)
In your case I'd like you to try the specific solution, and let me know if it works please.
in xFiles.clw
xCell.SetCell method
search for
if not omitted(p_data) and numeric(p_data)
and replace with
if not omitted(p_data) and numeric(p_data) and len(clip(p_data)) < 16
The generic solution is a lot more invasive, and I would need to think before implementing that.
Cheers
Bruce