You need to sign in to do that
Don't have an account?

Merging rows in a report using custom summary formulas?
I've created a report that shows my opportunity pipeline by probability but I'm trying to merge a couple of the rows together and am looking for some help on how to do it. I'd like to combine the 10% and 20% opportunities into a single row of data so the total monthly and grand totals are combined.
Somehow the last row of date would show the following:
10-20% $3,000 $468,686.35 $602,427.38 $1,074,113.73
Any help that can be provided would be great. Thanks!
Untested, I think it would be something like this:
case( Probability, <.21,"10-20%" <.31,"30%" <.41,"40%","50%" )
The error I receive is:
I think you can't actually use "<" with a case function, so maybe something like
if(Probability <.21,"10-20%", if(Probability <.31,"30%", if(Probability <.41,"40%",50% )
This is where I am now and am getting a different error.
if(PROBABILITY <0.21,"10-20%",
if(PROBABILITY <0.31,"25-30%",
if(PROBABILITY <0.51,"40-50%",
if(PROBABILITY <0.81,"75%",
if(PROBABILITY <0.91,"90%",
if(PROBABILITY <1.00,"100%"))))))
if(PROBABILITY <0.21,"10-20%", if(PROBABILITY <0.31,"25-30%", if(PROBABILITY <0.51,"40-50%", if(PROBABILITY <0.81,"75%", if(PROBABILITY <0.91,"90%", if(PROBABILITY <1.00,"100%"))))))
Sorry about that. Here's the code.
Try
if(PROBABILITY <0.21,"10-20%", if(PROBABILITY <0.31,"25-30%", if(PROBABILITY <0.51,"40-50%", if(PROBABILITY <0.81,"75%", if(PROBABILITY <0.91,"90%",)))),100%)
I just tried that and now I'm getting this error. Also, should the 100% be in quotes as well?