Forum

Catalin Bombea
@catalinb
Admin
Member
Joined: Nov 8, 2013
Last seen: Dec 22, 2025
Topics: 1 / Replies: 1937
Reply
RE: Short time format in VBA

Hi Julian, In excel, 1 day represents 1 unit. A fragment of a day will obviously be a fragment of 1 unit. Therefore, if 1 day=1, half day will be =...

8 years ago
Forum
Reply
RE: Confining a macro to one worksheet in a workbook

No, this is a standard event for this workbook module: Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range) Ther...

8 years ago
Forum
Reply
RE: Confining a macro to one worksheet in a workbook

Hi Alan, The code should look like this: (noticed that the code is in ThisWorkbook) Private Sub Workbook_SheetSelectionChange(ByVal Sh As Ob...

8 years ago
Forum
Reply
RE: Dynamic Date Table - week ending Saturday not Sunday

Hi Sharleen, Welcome to our forum 🙂 In Excel, first day of week is used, not the last. Same in Power Query, here is a resource for that: Pow...

8 years ago
Forum
Reply
RE: Error message in M function

Hi Anne As you guessed already, it's a simple error, hope the colors will help you see what the text already tells you: We cannot apply operator...

8 years ago
Forum
Reply
RE: Select a string from a filter on a pivot table

Hi Lena, Declare a variable: Dim Fld as PivotField, Itm as PivotItem Set Fld=ThisWorkbook.Worksheets("Sheet1").PivotTables("PivotTable1").P...

8 years ago
Forum
Reply
RE: How to print multiple related columns as continuous columns on one page

Hi ER, Sorry for the late reply. Not saying it's impossible, but it is not easy to do that. How do you know when a page is "full'? It really dep...

8 years ago
Reply
RE: Table Data Reordering Starting from Numbers from Smallest to Bigger

I think your italian english was confusing enough, no need to change the language 🙂 For such tasks you should try the macro recorder. Your code so...

8 years ago
Forum
Reply
RE: Use Power Query to quickly enter a repeating data set

Hi Anne, I see it as a simple merge, the trick is to add to both tables a custom column with the same number in all rows (the custom column formula...

8 years ago
Forum
Reply
RE: VB Code

Hi Mohamed, Is the code used in a regular vb module in your file? that .xlam is an add-in, maybe you pasted the code in that add-in modules, not in...

8 years ago
Forum
Reply
RE: Making a Photograph of a Specific Area of ​​a Web Page

Hello, my name is Catalin. Excel does not have such options, it needs to use external apps to do this. Even taking a printscreen is not very easy, ...

8 years ago
Forum
Reply
RE: Create a Pivot that filters the columns

Hello, my name is Catalin. First, add a column with this formula to determine the age: =(TODAY()-C2)/365.25 If you sort the new column Largest t...

8 years ago
Forum
Reply
RE: Create, email, and file PDF for specific worksheets

Why would you keep something in E1 other than email address? Sub SendAllSheets() Dim ws As Worksheet For Each ws In ThisWo...

8 years ago
Forum
Reply
RE: Filter range table range

Here is an excellent 🙂 reference:

8 years ago
Forum
Page 103 / 130
0