Look in a column and find a specified value, and then add the totals from a different column, across all sheets in the workbook.
For example, let's say I have two columns on all my sheets in my workbook. In column A, I have serial numbers; in column B, I have dollar values. Can I tell excel to...
I have this code used for my macro:
Option Explicit
Sub CreateNextWeek()
Dim WeekNbr As Long
WeekNbr = InputBox("Enter the week number.")
Sheets("Template").Copy After:=Sheets(Sheets.Count)
ActiveSheet.Name = "WE (" & WeekNbr & ")"
Cells(2, "D").Formula = "='Week (" & WeekNbr -...
On the attached workbook, the 4th tab, I would like some help figuring out the following:
1. Columns T through W will return "1" or leave cell blank if conditions are met. -By the way, I have the condition formulas structured, albeit poorly.
2. Since the amount of rows of data will always...
I have a spreadsheet that I'm working on. What I would like to do is have the cells in the range fill/highlight with a certain color, based on the current date and the date a training activity is due.
For example, I have a chart of 17 employees with 10 training activities that i'd like to...