Brad_Miller
Board Regular
- Joined
- Sep 18, 2014
- Messages
- 56
Hi Excel geniuses
I am trying to sort my movies I have and I have them listed with a marker at the end of the file either [720p] or [1080p] or nothing
I have used these formulas to move the resolution tag to the front so I can group movies by resolution.
I used these serpeatly to move the tag but I get so loast trying to make them a nested if
=IF(SEARCH("[720p]",A1),CONCATENATE(RIGHT(A1,0),"[720p] ", LEFT(A1,FIND("[720p]",A1,1)-1)))
=IF(SEARCH("[1080p]",A9),CONCATENATE(RIGHT(A9,0),"[1080p] ", LEFT(A9,FIND("[1080p]",A9,1)-1)))
AND!
Ideally i would like to have one formula that move both tag and then if there is no tag leave it as is.
[TABLE="width: 500"]
<tbody>[TR]
[TD]Original Name[/TD]
[TD]modified Name[/TD]
[/TR]
</tbody>[/TABLE]
[TABLE="width: 500"]
<tbody>[TR]
[TD][TABLE="width: 274"]
<tbody>[TR]
[TD]13 Hours The Secret Soldiers of Benghazi (2016) [1080p][/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[TD][TABLE="width: 405"]
<tbody>[TR]
[TD][1080p] 13 Hours The Secret Soldiers of Benghazi (2016)[/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[/TR]
[TR]
[TD][TABLE="width: 274"]
<tbody>[TR]
[TD]16 Blocks (2006) [720p][/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[TD][TABLE="width: 405"]
<tbody>[TR]
[TD][720p] 16 Blocks (2006)[/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[/TR]
[TR]
[TD][TABLE="width: 274"]
<tbody>[TR]
[TD]200 MPH[/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[TD][TABLE="width: 274"]
<tbody>[TR]
[TD]200 MPH[/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[/TR]
</tbody>[/TABLE]
Thanks in advance!
I am trying to sort my movies I have and I have them listed with a marker at the end of the file either [720p] or [1080p] or nothing
I have used these formulas to move the resolution tag to the front so I can group movies by resolution.
I used these serpeatly to move the tag but I get so loast trying to make them a nested if
=IF(SEARCH("[720p]",A1),CONCATENATE(RIGHT(A1,0),"[720p] ", LEFT(A1,FIND("[720p]",A1,1)-1)))
=IF(SEARCH("[1080p]",A9),CONCATENATE(RIGHT(A9,0),"[1080p] ", LEFT(A9,FIND("[1080p]",A9,1)-1)))
AND!
Ideally i would like to have one formula that move both tag and then if there is no tag leave it as is.
[TABLE="width: 500"]
<tbody>[TR]
[TD]Original Name[/TD]
[TD]modified Name[/TD]
[/TR]
</tbody>[/TABLE]
[TABLE="width: 500"]
<tbody>[TR]
[TD][TABLE="width: 274"]
<tbody>[TR]
[TD]13 Hours The Secret Soldiers of Benghazi (2016) [1080p][/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[TD][TABLE="width: 405"]
<tbody>[TR]
[TD][1080p] 13 Hours The Secret Soldiers of Benghazi (2016)[/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[/TR]
[TR]
[TD][TABLE="width: 274"]
<tbody>[TR]
[TD]16 Blocks (2006) [720p][/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[TD][TABLE="width: 405"]
<tbody>[TR]
[TD][720p] 16 Blocks (2006)[/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[/TR]
[TR]
[TD][TABLE="width: 274"]
<tbody>[TR]
[TD]200 MPH[/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[TD][TABLE="width: 274"]
<tbody>[TR]
[TD]200 MPH[/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[/TR]
</tbody>[/TABLE]
Thanks in advance!
Last edited: