September 3, 201213 yr Hello everyone, I have been having some trouble trying to come up with a calculation. I have a field called Bar set to 100 repetitions with the following calculation. If ( 50 ≥ Get ( CalculationRepetitionNumber ) ; "█" ) This gives me the value "█" for the first 50 repetitions, which is fine. However, when I reference a field instead of the number. The calculation only gives me the value for the first repetition. If ( value ≥ Get ( CalculationRepetitionNumber ) ; "█" ) The field called value has a value of 50. But it doesn't evaluate as the first calculation using the number. Can anyone let me know why this is not working as I expect. Perhaps I am overlooking something obvious. Thanks in advance!
September 3, 201213 yr If - as it seems - Value is not a repeating field, you need to extend it in order to make it available to all the repetitions, e.g. = If ( Extend ( value ) ≥ Get ( CalculationRepetitionNumber ) ; "█" )
Create an account or sign in to comment