This document summarizes a research paper that proposes a priority-based bitmap indexing strategy to efficiently evaluate aggregate functions in iceberg queries. Iceberg queries are queries with aggregate functions followed by a having clause, and their processing cost is typically high. The proposed strategy assigns priority to bitmap vectors based on the position of 1s, uses a tracking pointer to identify the next matching vector, and looks ahead to predict if operations will satisfy the threshold. Experiments show the priority-based approach reduces the number of iterations and time required to execute iceberg queries by 45-50% compared to previous strategies, especially as the dataset and threshold sizes increase.