Posts by quant

    Re: Merging two excel sheets and deleting duplicate data


    Hey,


    You could do it easily by using Excel, rather than depending on a macro?


    If you are looking this as a repetitive task, then a macro would be better.


    Just push the data in sheet 2 into a collection
    and then get the sheet1 data check unique or not and then update the collection to be pushed to the next worksheet.


    Regards
    Segu

    Re: VBA code for Checkbox


    Hi Kishan,


    You could do this by checking it the check box is checked or not, based on event (Click).


    You can update checkbox status to chkbox1.Checked = True. to mark it checked.


    And uncheck by assigning False value, when one of item is clicked.


    Revert in case of any queries.


    Regards,
    Segu

    Re: Help on Series Investigation


    Hi Marcusmark,



    Regards,
    Segu

    Re: Add-in


    Hi,


    You should not .dll.. but you should use .tlb file generated.


    If you are not able to find it let me know.


    Regards
    Segu

    Re: Huge VBA program


    Hi Rogvid,


    We could not assess anything without code you are using. If you are using too many calls to workbook, might be move them into array using .. resize and do it in parts.


    By the message above, we will not be able to assess your problem completely.


    Regards,
    Segu

    Re: Formula for a bank statement running balance calculation


    hi,


    If you are saying running balance, you can just provide the opening balance somewhere and then just add them.


    It should provide you with results.


    Regards
    Segu