Hi K'
"I want to enter manually values on cells B3, C3 and D3, no matters if I select “Cantidad” or “Pagó” in A3 Pop-Pop selection options."
"But If I select “None (blanks)” in A3, I want to clear or empty B3, C3 and D3 values at the same time."
Can't have both, for reasons stated above, and repeated below.
Back in high school, I discovered there were two core lessons in High School Physics:
F=ma
and
You can't push a string.
The second applies to spreadsheet formulas.
Formulas can not push a value into a cell.
There's no CLEAR() function, nor is one possible. CLEAR as written in your first IF formula is being asked to PUSH a zero or blank value into B3. Not possible.
Similarly, in your second formula, you are asking this formula, located in an unidentified hidden cell, to PUSH a null string into B3. Noy possible that way either.
Any formula that is going to determine the value in B3 must be placed in B3.
Any data entered into B3 by typing it in or pasting it in will replace the formula in that cell.
Moving to a wider view of the picture:
You have three values in your popup menu in A3; none, Cantidad, and Pagó.
- If 'none' is chosen, you want B3, C3 and D3 to appear 'blank'.
- What should happen in these three cells if Cantidad is chosen?
- What should happen in these three cells if Pagó is chosen?
Are the values to be placed in these cells available in another cell in this table or another table?
Are they to be calculated from values in another cell (or other cells) in this table or another table?
Are they fixed values, to be written into the formula?
Are they values that you will enter into each of the three cells?
If you are entering the values into these cells, what is the purpose of the pop-up menu cell?
If you are entering values directly into B3, C3 and D3, your simplest course might be to:
Set the pop-up to the required value.
Click on B3 to select it,
Press the shift key and click on D3 to add it and C3 to the selection.
Press Delete to clear all three cells.
Enter the new value(s) in each cell.
Regards,
Barry