Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: May 22, 2025
Topics: 0 / Replies: 838
Reply
RE: Return a result based on cell contents

If you mean that C38 equals "Top Mount" then you can simply use: =If(C38="Top Mount",(E5*2+G5*2)*2,sumproduct((Lists!$A$1:$A$10=i38)*Lists!$B$...

4 years ago
Reply
RE: How do you turn a serial number into a date?

Just as an alternative formula: =TEXT(B2,"0000-00""-01""")+0 then format as a Date.

4 years ago
Reply
RE: IF AND OR FUNCTION/FORMULA

Assuming the negative values in your current version should not really be there, you could just use: =IF(MAX(B2-C2,0)-D2/2>0,MAX(B2-C2,0)-D...

4 years ago
Reply
RE: VBA send worksheet separately

I would pass the worksheet as an argument to the email routine: Sub EmailScript(ws As Worksheet) Dim EmailSubject As String, EmailSignature...

4 years ago
Forum
Reply
RE: Show full row in userform search

If you use AddItem you are limited to 10 columns. The alternatives are to use an array and assign that to the control, or to use a range on a workshee...

4 years ago
Forum
Reply
RE: Table not keeping formulas when sorted

I think you'd be better off having a separate table for the values in your named cells.

4 years ago
Reply
RE: Macro file return #NAME? Errors once saved

Did you enable macros when opening the workbook?

4 years ago
Forum
Reply
RE: DSUM AND SUMIFS

Your sales values are text. Select the Sales column, press Ctrl+H to bring up the Find/Replace dialog and then enter $ in the Find box, leave the repl...

4 years ago
Reply
RE: sum of 2 rows

Roughly speaking, in PQ you could get the latest date for each Actual value for a given Product/Grade combination, and using that get the latest value...

4 years ago
Forum
Reply
RE: Conditional msgbox

A Long is a Long Integer, so always a whole number. I suspect you want Double.

4 years ago
Forum
Reply
RE: hide columns for the selected worksheets

If they are selected, you can simply loop: For each ws in activewindow.selectedsheets ws.Range("A:C").EntireColumn.Hidden = True next ws

4 years ago
Forum
Reply
RE: Run time error 1004

Your macro works fine for me on 365 but if you're running a non-365 version, remove the @ symbols from the formula.

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

What exactly are you trying to prevent?

4 years ago
Forum
Reply
RE: CONTAINER PLAN-I WANT TO A PROGRAM WITH EXCEL THAT CAN DO CONTAINER PLAN DİRECTLY, PLEASE HELP

Cross-posted here: Container plan-i want to a program with excel that can do container plan dİrectly, please (excelforum.com)

4 years ago
Forum
Reply
RE: Calculate Named ranges as strings from source table

You could write a separate function for it, or just add a custom column - for example: let Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Conten...

4 years ago
Forum
Page 38 / 56