Posting the reply from
offset(${total_users}, -1)
is going to return the value in the row above the one running the calc, so you’re dividing each row by the row above it. To divide each value by the top row, you’ll want index(expression, n)
, so the final calc would look like
${total_users} / index(${total_users}, 1)
index()
returns the value expression
in the n
th row.
Reply
Enter your username or e-mail address. We'll send you an e-mail with instructions to reset your password.