Hi:
I have written a function in module 1 ( it's a standard set of codes nothing fancy ) of the work book, copy that as well to the other workbook for the formula work.
Thanks
Hi:
I am not still clear,
I believe the current formula is doing what you have asked for , April is month 1 for 131, since there is a number greater than 0 in column H the formula makes the month to 2 in this instance, I am adding column R to this to happen. However, if the monthly increment...
Well, the criteria you have given in spread sheet and the criteria you are giving now id totally different. Clearly explain the logic behind what you are looking for to get a solution.
Hi:
I am not sure what kind of analysis you are looking for. I have transformed your raw data using power query and pulled a pivot to summarise the data(sheet2)
Thanks
Hi:
One way to do this is to merge the two tables using a unique field and pull the columns needed into a new output table.
Note:
Create the merge table as new merge table and populate the output in this table.
Thanks
Hi:
May be this function
Function colour(rng As Range) As String
Dim r$
c$ = rng.Text
For i& = 1 To VBA.Len(c)
If rng.Characters(i, 1).Font.Color = 4172854 Then r = r & VBA.Mid(c, i, 1)
Next
colour = Trim(Left(r, 1))
End Function
Thanks
Hi:
If you know power query this is very easy to achieve , there is any need for vba codes.
https://support.office.com/en-us/article/combine-data-from-multiple-data-sources-power-query-70cfe661-5a2a-4d9d-a4fe-586cc7878c7d
Thanks
Hi:
Use the following code
Sub blah()
With Sheet1
On Error Resume Next
.ShowAllData
i& = .Cells(Rows.Count, "A").End(xlUp).Row
j& = Sheet3.Cells(Rows.Count, "A").End(xlUp).Row
k& = Sheet4.Cells(Rows.Count, "A").End(xlUp).Row
l& = Sheet2.Cells(Rows.Count, "A").End(xlUp).Row
Sheet3.Range("A2:P"...
Hi:
You are getting the chart formatted using vba code , you will have to write codes for the new charts if you want to create to get the same effect.
Thanks