Hey Jbeau,
Regarding the final macro:
Option Explicit
Sub Images1()
Dim LR As Long
Application.ScreenUpdating = False
Application.DisplayAlerts = False
With Sheets("broad")
LR = .Range("A:A").Find(WorksheetFunction.Max(.Range("A:A")), LookIn:=xlValues, LookAt:=xlWhole).Row
.Range("A1:A" & LR).Copy 'edit this range as needed
End With
Sheets.Add
Range("A1").PasteSpecial
ActiveSheet.Move
ActiveWorkbook.SaveAs Filename:="C:\Users\k\Dropbox\d1.csv", FileFormat:=xlCSV, CreateBackup:=False
ActiveWorkbook.Close False
Application.ScreenUpdating = True
End Sub
When I use the following Formula with the macro:
=IF($B5="","",VLOOKUP($B5,Copy!$A$7:$B$21,COLUMNS(Copy!$A$7:$B$21),FALSE))
it works just fine, but if I use something simpler like:
=IF(Sheet1!A14="", "", Sheet1!A14)
it doesn't work
I was just curious for an explanation, the following macro isn't working correctly on this sheet
I've attached the orig file to my FTP
http://www.jyxsaw.com/ZCOU/ACdem.xlsm
Bookmarks