When looking at Charts in an entity view, the legend is hidden behind a click. I’d like to add labels to a chart, so they get displayed under each x-axis value and our users won’t need to click on the legend anymore!
I can’t figure out how to do that on this report, because I’m using the same data field (Points) to generate 3 different numbers (Points Logged, Remaining Capacity & Points Over Capacity) and because the values are always different for each team member (User), there’s no consistent way to accurately label them.
I admit that I find the reporting tool very overwhelming, so maybe there’s something obvious to more power users that I just haven’t thought of and I’d appreciate any help!
My calculation for “Points Logged”:
IF(
SUMIF(
[Points],
[Type] == 'Point Log'
) > SUMIF(
[Points],
[Type] == 'Point Capacity'
),
SUMIF(
[Points],
[Type] == 'Point Capacity'
),
SUMIF(
[Points],
[Type] == 'Point Log'
)
)
My calculation for “Remaining Capacity”:
IF(
SUMIF(
[Points],
[Type] == 'Point Capacity'
) >= SUMIF(
[Points],
[Type] == 'Point Log'
),
SUMIF(
[Points],
[Type] == 'Point Capacity'
) - SUMIF(
[Points],
[Type] == 'Point Log'
),
0
)
My calculation for “Points Over Capacity”:
IF(
SUMIF(
[Points],
[Type] == 'Point Capacity'
) < SUMIF(
[Points],
[Type] == 'Point Log'
),
SUMIF(
[Points],
[Type] == 'Point Log'
) - SUMIF(
[Points],
[Type] == 'Point Capacity'
),
0
)