Forum

SunnyKow
@sunnykow
Noble Member
Joined: Jun 25, 2016
Topics: 0 / Replies: 1417
Reply
RE: Counting delimited quantities in multiple cells

Hi Alan I would do the following: 1) Concatenate/join the cells together (using TEXTJOIN or CONCATENATE) 2) Substitute the delimiters with bl...

6 years ago
Reply
RE: Pick Closest Date from a row of dates

Hi Wade Try =HLOOKUP(C2+6,F1:AJ1,1,TRUE) Hope this helps. Sunny

6 years ago
Reply
RE: If Between Dates

Hi cgray Is it between 0 and 7 or 1 and 7? =IF(AND([@[Reset Date]]-[@[Date Pulled]]>=1,[@[Reset Date]]-[@[Date Pulled]]<=7),"This Week",0)...

6 years ago
Reply
6 years ago
Forum
Reply
RE: Adding Words

Hi Marsil You only need to add this line in red to your code. It just swap the position of the Name and Public Words. Sub AddPublicWord() Dim Co...

6 years ago
Forum
Reply
RE: Adding Words

Hi Marsil My guess is you wanted a dynamic range. Sub AddPublicWord() Dim CoArray() As Variant Dim PWArray() As Variant Dim r As Long Dim s As L...

6 years ago
Forum
Reply
RE: Hover Over an Icon Popup

You can try adding a carriage return like this to the code. "Message at row 1" & vbcr & "Message at row 2" & vbcr & "Message at ro...

6 years ago
Forum
Reply
RE: Hover Over an Icon Popup

You can hyperlink an image. Refer my attachment. You will need to run the attached macro for each image. Just change the image's name and the to...

6 years ago
Forum
Reply
RE: Hover Over an Icon Popup

Is the icon/symbol an image/picture? I was thinking about using hyperlink as it contains captions. The hyperlink for the image could be disabled (with...

6 years ago
Forum
Reply
RE: Hover Over an Icon Popup

Is it just to display a text popup or is it also clickable to run a macro etc?

6 years ago
Forum
Reply
RE: Spreading a cell value evenly across a range of cells (eg, allocate annual to months)

Hi Stephen Give this a try. Sub SpreadAllocation() Dim r As Long Dim c As Long Dim cell As Range For Each cell In Selection r = cell.Row Rang...

6 years ago
Forum
Reply
RE: VLookup & Match

Thanks Velouria and David.

6 years ago
Forum
Reply
RE: VLookup & Match

Hi Nicko My formula is a bit long but should be able to get what you wanted. In cell C13 enter : =INDEX(2:2,MATCH(C12,INDIRECT("B"&MATCH(...

6 years ago
Forum
Reply
RE: Searched words

No problem. Glad I was able to help. Sunny

6 years ago
Forum
Reply
RE: Searched words

Hope this is correct. Sunny

6 years ago
Forum
Page 13 / 95