Dec 04, 2023 12:22 PM
Hello All,
I have looked around the discussion boards for an answer with no luck. I have a formula as follows:
Solved! Go to Solution.
Dec 04, 2023 04:18 PM
Hi @dcalderon.
The REPT function seems to allow only integers.
Adding INT or ROUND functions eliminates the error.
REPT("|",INT({Line Count}))
REPT("|",ROUND({Line Count},0))
Dec 04, 2023 04:18 PM
Hi @dcalderon.
The REPT function seems to allow only integers.
Adding INT or ROUND functions eliminates the error.
REPT("|",INT({Line Count}))
REPT("|",ROUND({Line Count},0))
Dec 04, 2023 04:21 PM
that did the trick! thank you so much for your help with this! I really appreciate it!