itsgrady
Board Regular
- Joined
- Sep 11, 2022
- Messages
- 132
- Office Version
- 2021
- Platform
- Windows
- MacOS
Currently I am using conditional formatting to turn the Zero white in a cell to make disappear, but it's turning every number with a zero white. Below is my formula for pulling information from 10 different list. Once the information in the cell $AH$6 matching the one of the list it pulls in the information in. If the cell has no information it puts a zero in the cell. I need to remove the zero in cell.
=IFNA(IFS($AH$6="AS",$BB28,$AH$6="BS",$BF28,$AH$6="CS",$BJ28,$AH$6="DS",$BN28,$AH$6="S1",$AI28,$AH$6="S2",$AJ28,$AH$6="S3",$AK28,$AH$6="S4",$AN28,$AH$6="S5",$AO28,$AH$6="S6",$AP28),"")
Here is formula broken down by one
IFS($AH$6="AS",$BB28)
I pull the above long formula down to auto fill the other cells to copy the entire column range.
=IFNA(IFS($AH$6="AS",$BB28,$AH$6="BS",$BF28,$AH$6="CS",$BJ28,$AH$6="DS",$BN28,$AH$6="S1",$AI28,$AH$6="S2",$AJ28,$AH$6="S3",$AK28,$AH$6="S4",$AN28,$AH$6="S5",$AO28,$AH$6="S6",$AP28),"")
Here is formula broken down by one
IFS($AH$6="AS",$BB28)
I pull the above long formula down to auto fill the other cells to copy the entire column range.