Forum: Visual Basic 4 / 5 / 6 Jan 26th, 2009 |
| Replies: 1 Views: 529 solved... I used another reference cell...
=TEXT(J9,"DD MMMM YYYY")
Which returns (for today) "26 January 2009".
I can then reference this cell elsewhere. |
Forum: Visual Basic 4 / 5 / 6 Jan 26th, 2009 |
| Replies: 1 Views: 529 I am trying to keep formatting between cell references.
For instance, I have a date in once cell (J9) and would like to add this date to a text field so e.g.:
="This will take effect on " & J9... |
Forum: Visual Basic 4 / 5 / 6 Jan 26th, 2009 |
| Replies: 2 Views: 1,562 I have this all figured out now. |
Forum: Visual Basic 4 / 5 / 6 Jan 23rd, 2009 |
| Replies: 2 Views: 1,562 Okay, I came up the following code which finds the cell address of the lookup (z) data.
Sub lookup()
Dim lookup
lookup = Range("lookup").Value
For each c in Range("lookup_range").Cells
If... |
Forum: Visual Basic 4 / 5 / 6 Jan 23rd, 2009 |
| Replies: 2 Views: 1,562 Unfortunately, I don't think this question is solved with a simple vlookup, or etc.
I have a spreadsheet that has several tables of data with the following format on one sheet:
gxxxx
gxxxx... |