D Dinesh_Excel Member Dec 25, 2018 #1 Hello Friends, I need help in getting an output in location column as "Internal" if column A starts with letter "I" any other text or number should be " External" Appreciate your help here. Attachments formula.xls 25.5 KB · Views: 8
Hello Friends, I need help in getting an output in location column as "Internal" if column A starts with letter "I" any other text or number should be " External" Appreciate your help here.
V vletm Excel Ninja Dec 25, 2018 #2 Dinesh_Excel Is there always seven rows data? if only few ... then for B2 Code: =IF(LEFT(A2,1)="I","Internal","External") but if much much more ... then You would use something else Last edited: Dec 25, 2018
Dinesh_Excel Is there always seven rows data? if only few ... then for B2 Code: =IF(LEFT(A2,1)="I","Internal","External") but if much much more ... then You would use something else
R rahulshewale1 Active Member Dec 25, 2018 #3 Hii @Dinesh_Excel , cell B2 : =IF(ISNUMBER(FIND("I",A2)),"Internal","External") Regard Rahul shewale