Hopefully an easy Input Box data question...

Belair58

Board Regular
Joined
Mar 31, 2005
Messages
95
Hello,

I have a macro that is pulling data from a sheet Cycle_14a_Output.txt. There will be multiple sheets used for this project, all name Cycle_XXa_Output.txt.

I've added an input box to ask what the number of the file should be.

How can I add the Input Data into the formula string?

<Code>

Sub Cycle_Reporting_Output_By_Cycle()
'
' Cycle_Reporting_Output_By_Cycle Macro
'

'
Dim Cycle As Variant

Cycle = InputBox("What Cycle Number and Letter?")


Range("E2").Select
Selection.Copy
Range("E3").Select
Range(Selection, Selection.End(xlDown)).Select
ActiveSheet.Paste
ActiveSheet.Paste
Application.CutCopyMode = False
Range("F6").Select
ActiveWindow.SmallScroll Down:=-70
Range("E1").Select
ActiveCell.FormulaR1C1 = "LATE / OnTIME"
Range("E2").Select
ActiveCell.FormulaR1C1 = _
"=IF(RC[-4]="""","""",IFERROR(VLOOKUP(RC[-4],Cycle_14a_Output.txt!C1,On-Time,FALSE),""LATE""))"
Range("E2").Select
Selection.AutoFill Destination:=Range("E2:E69"), Type:=xlFillDefault
Range("E2:E69").Select
ActiveWindow.SmallScroll Down:=-70
ActiveCell.FormulaR1C1 = _
"=IF(RC[-4]="""","""",IFERROR(VLOOKUP(RC[-4],Cycle_14a_Output.txt!C1,1,FALSE),""LATE""))"
Range("E2").Select
Selection.AutoFill Destination:=Range("E2:E69"), Type:=xlFillDefault
Range("E2:E69").Select
ActiveWindow.SmallScroll Down:=-50
Range("F1").Select
ActiveCell.FormulaR1C1 = "LATE / On-Time"
Columns("F:F").Select
Selection.ClearContents
ActiveWindow.SmallScroll Down:=-10
End Sub

</Code>

Thanks for any help,
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
How about
Code:
"=IF(RC[-4]="""","""",IFERROR(VLOOKUP(RC[-4],Cycle_" & cycle & "_Output.txt!C1,On-Time,FALSE),""LATE""))"
 
Upvote 0

Forum statistics

Threads
1,213,536
Messages
6,114,202
Members
448,554
Latest member
Gleisner2

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top