Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 15 Oracle Analytics Lounge
- 214 Oracle Analytics News
- 43 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 78 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture
BICS how to average on rows but not count zeros

Gdescheneau-Oracle
Rank 1 - Community Starter
Summary
BICS how to average on rows but not count zeros
Content
How can I average on rows but the count will not count zeros? Is this possible? example row1 = 100, row2 = 100, row3 = 0, and row4 = 0. AVG does the math (100+100+0+0)/4=50. I want it to skip "0" in the count of rows. so something like (100+100+0+0)/2=100. Excel has AVERAGEIF.
0
Answers
-
You can use >0 on your case statement and proceed to calculate the AVERAGE for only the data >0.
0