I have to count data that are less or equal to a number in one column and to count data that are greater than that number to another column. Any solution anybody?
<=80 | >80 |
count data <=80 | count data>80 |
*This post is locked for comments
I have to count data that are less or equal to a number in one column and to count data that are greater than that number to another column. Any solution anybody?
<=80 | >80 |
count data <=80 | count data>80 |
*This post is locked for comments
an example:
You can also use the Sum function for conditional aggregate calculations. For example, if a dataset has a field that is named State with possible values Not Started, Started, Finished, the following expression, when placed in a group header, calculates the aggregate sum for only the value Finished:
=Sum(IIF(Fields!State.Value = "Finished", 1, 0))
follow for this link for details
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,280 Super User 2024 Season 2
Martin Dráb 230,235 Most Valuable Professional
nmaenpaa 101,156