Hi all,
Is it possible to convert a data type time(7) into minutes format in SSRS expression?
For example I have column A of data type time(7), and the result value is 02:03:00
I would like to convert it into minutes in the SSRS expression in order to create a program flow for the following expression:
=iif(A > 59, "Red","Transparent")
Where if the result is greater than 59 minutes the field color turns red else stays transparent.
Thank you in advance,