Mismatched Aggregation

I want to use the result of this calc to highlight instances when there is a new product added and to be able to highlight it with conditional formatting except I am getting a mismatched aggregation error. The distinctcount works perfect but when added with current price, it doesnt. The calculation for
CurrentPrice = ( ifelse({module_flag}=‘Current Release’,{price_in_usd},0) * {current_qty})

ifelse(distinct_countIf({module_version},{module_id}={module_id}) = 1 AND {current_price} >= 1,‘NewModule’,‘None’)

Can you try and wrap the current_price in an avg and see if that works?

ifelse(distinct_countIf({module_version},{module_id}={module_id}) = 1 AND avg({current_price}) >= 1,‘NewModule’,‘None’)