Home > Mobile >  Excel Pivot Table: If cell is blank, use a different cell
Excel Pivot Table: If cell is blank, use a different cell

Time:11-03

So I have a pivot table which shows the owners name and the mileage of their car. Sometimes in my data-set there is no owner name - how do you account for this, and be able to re-direct it to a different cell.

So if owner name is blank, then utilise the car brand name instead for that row, so that it never uses (blank).

CodePudding user response:

You can simply create a new helper column, filling in a value in case of blank, something like:

=IF(ISBLANK(A2),"BLANCO",A2)

This gives following result:

Col1      Col2 (containing the formula)
====      ====
   a         a   
   b         b
        BLANCO
   d         d
  • Related