hey guys,
im boggled, this formula works one way but the other way it doesn't work and throws an error.
works:
Throws to many arguments![]()
Please Login or Register to view this content.
![]()
Please Login or Register to view this content.
hey guys,
im boggled, this formula works one way but the other way it doesn't work and throws an error.
works:
Throws to many arguments![]()
Please Login or Register to view this content.
![]()
Please Login or Register to view this content.
Attach a sample workbook. Make sure there is just enough data to demonstrate your need. Include a BEFORE sheet and an AFTER sheet in the workbook if needed to show the process you're trying to complete or automate. Make sure your desired results are shown, mock them up manually if necessary.
Remember to desensitize the data.
Click on GO ADVANCED and then scroll down to Manage Attachments to open the upload window.
If I helped, Don't forget to add reputation (click on the little star ★ at bottom of this post)
Don't forget to mark threads as "Solved" (Thread Tools->Mark thread as Solved)
Try breaking the components apart and test each 1....
You can then see which parts are doing what, and which parts are not behaving=CONCATENATE(
IF(VLOOKUP(F3,_CLEAN,14,FALSE)=0,"",VLOOKUP(F3,_CLEAN,14,FALSE)),
IF(O3<>0,TEXT(O3,"h:mm AM/PM"),""),
IF(O3<>0," C/O",""),
IF(J3="VM",VLOOKUP(F3,_VME,4,0),"")
)
This probably wont fix anything, but you could probably shorten these bits...
IF(O3<>0,TEXT(O3,"h:mm AM/PM"),""),
IF(O3<>0," C/O",""),
to just...
IF(O3<>0,TEXT(O3,"h:mm AM/PM C/O",""),
1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
2. If your question is resolved, mark it SOLVED using the thread tools
3. Click on the star if you think someone helped you
Regards
Ford
I didn't look through the entire formula, but already at the first IF statement you are missing a ")" after the "value if false" part.![]()
Please Login or Register to view this content.
=CONCATENATE(IF(J3="VM",VLOOKUP(F3,_VME,4,0),"",IF(VLOOKUP(...
should be:
=CONCATENATE(IF(J3="VM",VLOOKUP(F3,_VME,4,0),""),IF(VLOOKUP(...
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks