Forum

Catalin Bombea
@catalinb
Admin
Member
Joined: Nov 8, 2013
Last seen: Jul 3, 2025
Topics: 1 / Replies: 1936
Reply
RE: Macro written in 32 bit System - Not working as it should in 64 bit System - the attached link to SharePoint in excel now is read only

Try recording a macro while saving the file manually to the address you mentioned: COMPLETED MDF FORMS 2021 Once you put that path in file explor...

4 years ago
Forum
Reply
RE: Maximum Percentage Of Drop

The question and topic title clearly says: I need formula to calculate the maximum percentage of drop Looks like the question is in half, no...

4 years ago
Reply
RE: Reorganise data so I can pivot

Create a table from your data, make sure "My table has headers" check box is NOT checked. Use these queries (first query name is Headers): ...

4 years ago
Forum
Reply
RE: Macro written in 32 bit System - Not working as it should in 64 bit System - the attached link to SharePoint in excel now is read only

Try encoding the url: url=Application.WorksheetFunction.EncodeUrl("https://gbconnect.sharepoint.com/sites/BUKGBGATEPROCESS/MDF/MAIDSTONE COMPLETED ...

4 years ago
Forum
Reply
RE: Maximum Percentage Of Drop

Try this one: =MAX(IF($A$2:$A$7<OFFSET($A$2:$A$7,-1,0),IFERROR(1-$A$2:$A$7/OFFSET($A$2:$A$7,-1,0),0),0)) Array formula, so use Ctrl+Shift+Ent...

4 years ago
Reply
RE: Dynamic header for automatic updation every month

Also, for the data model when i'm trying to connect AllDataRes to AllDataR (Resource to Resource), it is connecting from AllDataR to AllDataRes. Is th...

4 years ago
Forum
Reply
RE: Dynamic header for automatic updation every month

Hi Shyam, When you expand columns, edit the M code: Instead of: = Table.ExpandTableColumn(#"Filtered Rows", "Content", {"Employment Status#(l...

4 years ago
Forum
Reply
RE: VBA Search with 3 parameters

Hi Gael, The easiest way is to add helper columns in the data sheet: for example, you can create a column for 3 parameters search, combining 3 colu...

4 years ago
Forum
Reply
RE: Using a resetting total to manage groupings

Hi William, Here is an example based on: >code> (values as list) as list=> let RT = List.Generate ( ()=> [RT = values{0}, count...

4 years ago
Forum
Reply
RE: how to have round up to 0.5

No idea what you mean with ABS, but updated the formula, see above the part in red.

4 years ago
Reply
RE: how to have round up to 0.5

You can try this: =INT(A2)+IF(A2-INT(A2)<0.25,0,IF(A2-INT(A2)<0.75,0.5,1))

4 years ago
Reply
RE: Using a resetting total to manage groupings

Hi William, Looking at: each if {[RT]} >= 10000 The curly brackets indicate a list type, normally, you cannot compare a list to a number, ...

4 years ago
Forum
Reply
RE: Macro to create Dropbox folder on Mac

Hi Alex, To create folders in Mac, it's not as easy as in windows. You have to check the environment: #If VBA7 then MkDir ... #Else ...

4 years ago
Forum
Reply
RE: how to have round up to 0.5

Try: =CEILING(2.8 , 3) =CEILING(2.25, 2.5)

4 years ago
Reply
RE: conditional filter

Hi Chen, These are custom solutions, not really generic solutions that can be found in standard documentation. Custom solutions requires usually...

4 years ago
Forum
Page 39 / 130