question

G C avatar image
1 Like"
G C asked Matt Long edited

Billboard display runtime

simple question, I just want to display runtime in "0.00 hours" (not date and time) on a billboard.

FlexSim 16.1.0
displaybillboard
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Answer

·
Matt Long avatar image
1 Like"
Matt Long answered Matt Long edited

Use the Display Text pick option and if your model is in hours enter:

concat(numtostring(time(), 0, 2), " hours")

If your model is in seconds just divide by 3600 etc:

concat(numtostring(time() / 3600, 0, 2), " hours")


time.png (37.1 KiB)
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.