Forum

Catalin Bombea
@catalinb
Admin
Member
Joined: Nov 8, 2013
Last seen: Jul 3, 2025
Topics: 1 / Replies: 1936
Reply
RE: Unable to find certain values

Hi, Data view is limited in editor, will never load all data there. You have to scroll down untill you see the last row-1000, then the editor will ...

4 years ago
Forum
Reply
RE: Table Transformation

Hi Steve, It is possible, but definitely not the right way. A pivot will be much faster, see attached.

4 years ago
Forum
Reply
RE: Headcount by month with pay >0, but weekly transaction noise

Hi Kevin, How would you calculate that in normal excel table? Hard to see what you mean. Why the count for employee A should be 0 in both periods 2 an...

4 years ago
Forum
Reply
RE: Log in separate sheet (with name, date and time)

At the end of my previous message, I provided the LogRow procedure, make sure you add it to your project. Not seeing it in your screen, that's also wh...

4 years ago
Forum
Reply
RE: Log in separate sheet (with name, date and time)

Hi Azid, Instead of: " from " & PreviousValue & " to " & Target.Value use: " from " & IIF(PreviousValue<>"",PreviousV...

4 years ago
Forum
Reply
RE: Each new excel sheet save/created should automatically saved data to master excel sheet

Can we see your file structure? A sample file is best if possible.

4 years ago
Forum
Reply
RE: Log in separate sheet (with name, date and time)

To add date and time, replace: Application.UserName & " changed cell " & Target.Address _ & " from " & PreviousValue & " to " &...

4 years ago
Forum
Reply
RE: Query from SQL using parameter values from Excel worksheet

Much clear then before. "Expression.Error: We cannot apply operator & to types Text and Number." That happens because StartPeriodParam is a nu...

4 years ago
Forum
Reply
RE: VBA excel - Loop and directory

Replace: With OutlookMail .Display with: With OutlookMail .Send And remove this part: If DisplayEmail = False Then .Send End I...

4 years ago
Forum
Reply
RE: VBA excel - Loop and directory

Please paste the code provided UNDER the End Sub line of your existing code, NOT inside the procedure you have. The code you have pasted above does...

4 years ago
Forum
Reply
RE: Query from SQL using parameter values from Excel worksheet

Unfortunately, nothing you say is reflected in the file: the query is not taken from sheet, only a single parameter is used in the file you attached, ...

4 years ago
Forum
Reply
RE: VBA excel - Loop and directory

Hi Chantal, You can use the code below to send all sheets one by one: Sub SendAllSheets() Dim ws As Worksheet For Each ws In ThisWorkbook.Wo...

4 years ago
Forum
Reply
RE: Power Query: Data transformation

Hi Alex, The Outcome sheet is not realistic, in a table there cannot be multiple columns with the same name. See the file attached, the result i...

4 years ago
Forum
Reply
RE: Query from SQL using parameter values from Excel worksheet

You already have the syntax needed to read the text from an excel table cell: SQLString = Excel.CurrentWorkbook(){[Name="TablenameOrDefinedName"]}[...

4 years ago
Forum
Reply
RE: Disable right-click on slicers in Excel

Short answer: No. There are no events associated to slicers that can detect if a user right clicked on a slicer.

4 years ago
Forum
Page 51 / 130