How can I use a VLOOKUP to return a formula instead of a string? How should that formula appear on the source sheet?
I've tried putting it in quotations then extracting with FIND, but no luck.
Hi,
Unfortunately, as far as I know, it's not possible at the moment, but it's an excellent idea!
Please submit an Enhancement Request when you have a moment.
I hope that helps!
Have a fantastic day!
Best,
Andrée Starå
Workflow Consultant / CEO @ WORK BOLD
Can you provide more details as to what you are doing and trying to accomplish?
It may be that you could use an IF statement to say that IF VLOOKUP returns "data", reference this cell on the other sheet.
The cell on the other sheet could contain the formula using cross sheet references.
While you may not be able to accomplish EXACTLY what you are trying to do, there may be other ways to accomplish what you need.
Thanks for the replies. I spoke to Support who said there's no way to do that currently. But I've come up with a workaround formula. Now I need help condensing the formula.
I need to keep track of documents for different states. I basically need a concatenated letter combination of which documents are entered in and not blank. In the screenshot example, there are 4 types that go in the proper slot. Some of what gets input there are dates and some are text. All the slots are date columns so I can monitor deadlines.
I'd like to end up with a final column that lists the combination of document slots whose cells aren't blank. So if something is filled in slot A and slot C, I want that final column to say "AC," regardless of whether it's a date or text.
A nested IF with HAS might do the trick, but I don't want the formula to stop in its tracks if a row doesn't have a letter.
Any ideas?
This picture shows the workaround. I made separate columns for each slot where I can individually keep track of all documents that are entered. Then I CONCATENATE them in another column to get the final result.
I'd really like to reduce the amount of formula columns on my sheet.
There are a couple of ways. The most straightforward being a set of combined IF statements.
You would take the formulas you already have and "add" them together.
=IF(NOT(ISBLANK([Slot A]@row)), "A") + IF(NOT(ISBLANK([Slot B]@row)), "B") + .................... + ................................
IT WORKED THANK YOU!!!!!
Excellent! Happy to help!
=SUMIFS({GM Compliance Trained}, {GM Compliance Training Dept}, Department@row , {Compliance Training Date}, MONTH(7, 8, 9)) GM Compliance Trained is the number of employees trained. I am trying to sum the number of employees trained in each department during 3rd quarter (July 1-Sep 30). Thinking I need an IFERROR in there…
Hi. I am working on a (roughly) annual document review system, in partnership with another team in my organization. They have requested that they receive one document to review per week. But there are more documents to review than there are weeks in the year. So I need to figure out a method for ensuring that I don't send…
I would like to use automation on a sheet to record the Open and Closed date for a given RAID item. I don't want to record the time, however. Is there a way to exclude a time stamp from the automation? If it is not possible to exclude the time stamp, what formula would I need to use to extract the datae and time into…