• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Search results

  1. Debraj

    Open Workbook In Full Screen........

    Is this what you want !!! Private Sub Workbook_SheetActivate(ByVal Sh As Object) ActiveWindow.WindowState = xlMaximized Application.WindowState = xlMaximized Application.DisplayFullScreen = True End Sub
  2. Debraj

    Increase Number

    Thanks for the feedback.. Welcome back.. :)
  3. Debraj

    Increase Number

    Hi Dinesh, Welcome to the forum... Reagrding your query.. In F2.. Use formula as.. =COUNTIF($D$2:D2,D2) Drag downward to get the expected result.
  4. Debraj

    Trying to format a date with VBA

    Hi PipBoy808! Below will also work.. as Now can also works as Date. Dim MyDate As Date MyDate = Now MsgBox Format(MyDate, "dd.mm.yy")
  5. Debraj

    How to design the data?

    + If you can also provide expected output.. it will be much easier for us.. :)
  6. Debraj

    Graphing 2 data series, primary and secondary axis, overlap property

    http://social.technet.microsoft.com/Forums/office/en-US/717e73f4-a3f4-4f6b-b27c-12162f17b89d/excel-2010-graph-bring-series-to-front-of-graph?forum=excel http://www.pcreview.co.uk/forums/changing-display-order-primary-and-secondary-axes-excel-charts-t1788502.html
  7. Debraj

    Subtracting one day from date

    Hi pipboy.. Your code is perfectly working fine in here..:oops: Can you please confirm.. what error you are facing..
  8. Debraj

    Show Hide Trendline with a checkbox

    Hi Partha.. In Case of VBA.. Private Sub CheckBox1_Click() If CheckBox1 Then Worksheets("sheet1").ChartObjects(1).Chart.SeriesCollection(1).Trendlines _ .Add Type:=xlLinear, Name:="Linear Trend", Forward:=[c5] With...
  9. Debraj

    Add new cell value to list in another sheet

    Hi DK, In case of multiple SCH in the list.. Which one you want to paste in List 2 sheet..
  10. Debraj

    Pivot Table Link Help

    What excel version you are using..!!! In case of 2010 + you can use Slicer.. Check this one..
  11. Debraj

    "Rows to Repeat At Top" Not Printing When Hidden

    Hi Cruiser.. Printing Hidden ROWS / COLUMNS is prohibited in office package.. as they all are WYSIWYG process.. You can look for some macro.. to unhide the rows, before printing, and re-hide after completion..
  12. Debraj

    macro to take value from different workbook and get their respective column value

    Hi Jitendra! Welcome to the forum.. :) Please spend some time http://chandoo.org/forum/forums/new-users-please-start-here.14/ and regarding your query..:confused: * Do you want to create.. Sheet1 Sheet2.. from Sector data file.. or * You want to create Sector Data sheet from all other sheets..
  13. Debraj

    VBA snippet to add ";" end of each email id from a cell

    Hi Karthik, Try this.. Sub AddAtEnd() [E8] = Join(Application.Transpose(Range("N11:N" & Range("N11").End(xlDown).Row)), ";") End Sub
  14. Debraj

    How to design the data?

    Hi Gn0001! As per my guessing power.. =SUMPRODUCT(($C$6:$C$12=$C12)*($D$6:$D$6=$D12)*($B$6:$B$12=$B12)*($D$6:$D$12=$D12)*$E$6:$E$12) You have to re-check highlighted red area..
  15. Debraj

    Transform text to array to be able to compare them

    If Numbe of Question (5) is fixed.. you can exclude the Indirect function.. :) =SUM(IF(MID(B1,ROW(1:5),1)=MID(A1,ROW(1:5),1),MID(C1,ROW(1:5),1)+0,0))
  16. Debraj

    Pivot Table Values Filter

    writting from smartphone.. May be not able to show you properly.. still.. 1. Assuming account are In column A. And months are in B:Z. 2. Select the table and press Ctrl D M. (pivot table wizard). 3. Select Multiple Column. (2nd option button) 4. Click next and select table.. 5. Click finish...
  17. Debraj

    Make text separate in below required cells from one cell.

    Hi Ramesh, thanks for the feedback.. :)
  18. Debraj

    Make text separate in below required cells from one cell.

    Hi Ramesh.. In E2.. use formula as.. =MID(TRIM(MID(SUBSTITUTE($F$2,CHAR(10),REPT(" ",LEN($F$2))),((ROWS(A$2:A2)-1)*LEN($F$2))+1,LEN($F$2))),3,255)
  19. Debraj

    VBA snippet to paste [Selection.End(xlDown)).Select] data

    Hi Karthik.. Try this.. Sub endxldownData() With Sheets("Home") .Range("B11:B" & .Range("p11").End(xlDown).Row) = _ Range("p11:p" & .Range("p11").End(xlDown).Row).Value End With End Sub
  20. Debraj

    Display Alerts

    If its .. due to some code.. then.. just after the paste operation .. use.. Application.CutCopyMode = False
  21. Debraj

    Find next match+unique users

    Sub UniqueMultipleRow() Dim sourceRange As Range, CriteriaRange As Range, Output As String Set sourceRange = Range("A1:D13") ' Set Source Area Set CriteriaRange = Range("G7").CurrentRegion ' Set Criteria Area With sourceRange For I = 2 To CriteriaRange.Rows.Count...
  22. Debraj

    Chart Axis format

    Hi Afarag.. Really confusing.. You have cretaed a lots of puzzle for me.. :( * Where is the "pivot table 1"!!! * Why all those name are created dynamically..!! * Why Pivot Table 1 is in cache but not in any sheet.. but who cares.. With your provided data, I created Pivot as well as Pivot...
  23. Debraj

    Find next match+unique users

    Hi Karthik, Please check with the below code... * Now you can exclude any criteria, if you left that criteria empty.. Sub UniqueMultipleRow() Dim sourceRange As Range, CriteriaRange As Range, Output As String Set sourceRange = Range("A1:D13") ' Set Source Area Set CriteriaRange =...
  24. Debraj

    macro code reqd

    Hi Shahul Provided code by Smallman is fully capable to fill data in Right.. Just need a Small Modification.. If macrcus allows me ... :) Range("B" & lr & ":" & "F" & lr).Value = "=SUM(R[-" & (lr - 1) & "]C:R[-1]C)"
Back
Top