Using Text in 2 Fields in a Formula
Solved/Closed
Josh
-
Mar 27, 2012 at 11:28 AM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Mar 30, 2012 at 04:59 PM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Mar 30, 2012 at 04:59 PM
Related:
- Using Text in 2 Fields in a Formula
- Tentacle locker 2 - Download - Adult games
- Five nights in anime 2 - Download - Adult games
- Feeding frenzy 2 download - Download - Arcade
- Number to words in excel formula - Guide
- My cute roommate 2 - Download - Adult games
1 response
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Mar 28, 2012 at 07:16 PM
Mar 28, 2012 at 07:16 PM
use ADDRESS function to do that. Perhaps you may also need INDIRECT, but on surface I would say you need ADDRESS function
Mar 30, 2012 at 09:02 AM
I appreciate the assistance and have been trying a few things out with the ADDRESS and INDIRECT functions. Here is what I've come up with but still am hitting a road block.
"=NETWORKDAYS(ADDRESS(2,6,1,TRUE,H10),TODAY())"
H10 is "=CONCATENATE(A3,"-",B3)"
This gives me a #VALUE error. If I step through the calculations, I think there are a few quotation marks that get thrown in there from somewhere and I need to eliminate those I think.
Any additional help would be greatly appreciated.
Thank you,
Josh
Mar 30, 2012 at 12:22 PM
=NETWORKDAYS(INDIRECT(ADDRESS(2,6,4,1,A3 & "-" & B3)),TODAY())
Mar 30, 2012 at 12:40 PM
Thank you,
Josh
Mar 30, 2012 at 04:59 PM
INDIRECT allows you to take that reference and give you reference specified by the address string. That converted it to a usable address ( kind of format has you typed in the location yourself)
Hope above two things kind of explained to you why you cannot directly used the string. You don't have to use address and create string yourself, but I find it very continent