MARKEGANDERSON

Active Member
Joined
Apr 7, 2007
Messages
264
Hello All - I am trying to use the below formula

=IFERROR(T(INDEX(Dollar_Amount1,(MATCH(cmts,DTS_ID,0)))),"") - It returns empty

Whenever I use this one in the same cell

=IFERROR(INDEX(Dollar_Amount1,MATCH(cmts,DTS_ID,0)),"") - it returns 500

What I am trying to do is get rid off the zero if the value is empty.
 
Last edited:

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
=IFERROR(1/(1/INDEX(Dollar_Amount1,MATCH(cmts,DTS_ID,0))),"")1/INDEX(Dollar_Amount1,MATCH(cmts,DTS_ID,0)): when INDEX returns zero value, this part will return error, and then 1/this error returns error, and IFERROR will return "".1/INDEX(Dollar_Amount1,MATCH(cmts,DTS_ID,0)): when INDEX returns non zero value, for example 500, this part will return 1/500, and then 1/(1/500) will return the orginal value 500.
 
Upvote 0
Thanks you. I get a #value error when it is blank, and a "1" when there is value

The below works for similar cells.

=IFERROR(T(INDEX(Routing___1,(MATCH(cmts,DTS_ID,0)))),"")

But not for the defined name :Dollar_Amount1
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,990
Messages
6,122,625
Members
449,093
Latest member
catterz66

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top