Thanks Hui for your comments. Unfortunately, bosco_yip knows my issue and solve it.Do you mean G10 as:
="-------> Upon Request on the "&C10
or do you want that to display when E10 is 0 ?
If that is the case
G10: =IF(E10=0,"-------> Upon Request on the "&C10,"")
or G9: =IF(F9=D9,"-------> Upon Request on the "&C9,"")
copy G9 down
Maybe,
Change your formula in F9 -->
From this :
=IFERROR(D9+E9,"Upon Request")
Into this :
=IF(E9,D9+E9,"Upon Request")
View attachment 74219
@bosco_yip I have tried your if function successfully but I have a small issue as image below:
View attachment 74223
The F9, why the #value, I have retype the same as your formula but kind of strange. The rest of it workable.
Hope to hear from you.
Thanks.
View attachment 74230
From the above screenshot in your post #5
It is a region date setting problem.
1] D9: 20/12/2020 ...> it is a UK date format setting (that is the reason F9 formula return error)
2] D10: 1/15/2021 ...> it is a USA date format setting
3] F11: 2/1/2020 ...> it is a USA date format setting (judge from the formula result)
So that,
Change D9 to USA data format >> 12/20/2020 will solve the problem.
Regards
pecoflyerFirst remove the manual alignment in col D so you can see the difference between text and numbers
You now see that XL thinks D9 is text ( left-aligned)
Select D9-D12 - Click Data - Text to columns - Finish.
Does this work ?
FWIW cell formatting has nothing to do with underlying values. It is only the way XL shows values to the outside world.
In your case XL sees D9 as text
Excel WizardMaybe try
=IF(E9,IF(N(D9),D9,SUBSTITUTE(MID(D9,FIND("/",D9)+1,9),"/","/"&LEFT(D9,FIND("/",D9))))+E9,"Upon Request")
or
=IF(E9,IF(N(D9),D9,RIGHT(D9,4)&MID(LEFT(D9,FIND("/",D9,4)),FIND("/",D9),4)&LEFT(D9,FIND("/",D9)-1))+E9,"Upon Request")
vletmFalinaicare
D9 is day/month/year
D10 is month/day/year
D11 is ... can be both ( day/month/year or month/day/year)
D12 is ... can be both ( day/month/year or month/day/year)
>> write all those dates day/month/year or month/day/year