Hi, I have a simple code in python:
used = int(license_used)
total = int(license_total)
if (used / total >= 0.8):
print("Licenses over 80 percent usage.")
But how to do the same in IQL language ? Is it possible ?
I need compare values from two fields and if A = 0.8B, I need create a ticket.
Thanks for any help!