I want to start off by saying I'm suuper new to Excel and completely Self-taught mostly using these forum threads. I've hit a hitch lately and I need some assistance resolving my problem.
I work for a Front Desk in Las Vegas. And I'm trying to make a report that auto-sorts information from Delimited data. Currently I'm using this method:
This pulls the room number for a corresponding tower into two separate areas. However I do not want blank cells in between.
I don't know if that makes sense but this is what it looks like: https://imgur.com/a/jZX0B
I want to remove the blank cells, but I cannot filter them out since it affects all cells.
Perhaps I can do a IF statement that will generate a List for the true value?
Thank you for any help!
I work for a Front Desk in Las Vegas. And I'm trying to make a report that auto-sorts information from Delimited data. Currently I'm using this method:
Code:
=IF(MID('Data Drop'!M2,3,1)="0",'Data Drop'!M2,IF(MID('Data Drop'!M2,3,1)="1",'Data Drop'!M2,"")) AND =IF(MID('Data Drop'!M2,3,1) = "6",'Data Drop'!M2,"")
This pulls the room number for a corresponding tower into two separate areas. However I do not want blank cells in between.
I don't know if that makes sense but this is what it looks like: https://imgur.com/a/jZX0B
I want to remove the blank cells, but I cannot filter them out since it affects all cells.
Perhaps I can do a IF statement that will generate a List for the true value?
Thank you for any help!