Firstly welcome to our family!.
Hi Ravi_Verma,
You requirement is unclear.
If this is not resolved yet, please elaborate your requirement and share the desired output
Hi Sasuke,
This is because of nature of Pivot table as pivot table is maintain its own cache, the default pivot table sorting functionality is based on raw data set.
If you are appending new data set in your raw data (whatever you are appending or inserting somewhere in data) the pivot table...
Hi Jason,
Please refer below ulr, this will help you to make searchable drop down.
https://www.extendoffice.com/documents/excel/2439-excel-drop-down-list-search.html
Hey,
Do you want to cover all "Treatment amount" before/ after prepaid or only after prepaid.
Please see attachment for all treatment amount with date associated
Try this one
Sub a()
iL = Range("a65556").End(xlUp).Row
Range("a1").Select
i = 1
Do Until i > iL
If ActiveCell.Value = "" Then
x = ActiveCell.End(xlDown).Offset(1, 0).Row
Else
x = ActiveCell.Offset(1, 0).Row
'MsgBox x
End If
Rows(x).Select
Selection.Insert Shift:=xlDown
If i =...
I am not very much good in VBA, but this will help you
Sub rr()
k = 1
iL = Range("a1").End(xlDown).Row
For Each i In Range("a1:a" & Range("a10000").End(xlUp).Row)
Rows(i.Offset(k, 0).Row).Select
Selection.Insert Shift:=xlDown
k = k + 1
Next i
Range("a1").Select
End Sub
Seems there is connection between excel and ppt.
please refer below url -
https://blogs.msdn.microsoft.com/mvpawardprogram/2014/04/07/powerpoint-and-excel-perfect-partners-for-dynamic-tables-and-dashboards/
This is quite interesting, can you please share the correlation between all sheets.
suggestion-
Yes, this is possible thru index / match but for range we have to use INDIRECT function to make dynamic range.
Hey Raj,
Few question -
1) Is the count of plan for a day is fixed lets say you have mentioned 15 in Ajay sheet?
2) What is "Dr./Prospect Name" in Data column is this the value for Ajay plans
You need to change little bit (need helper column) to do this job.
Attaching the sample sheet