Re: Dynamic Moving Camera
Hi,
Yup, pretty cool. Could you link it to scroll bars instead of buttons, it might be faster and more user friendly / intuitive?
John
Re: Dynamic Moving Camera
Hi,
Yup, pretty cool. Could you link it to scroll bars instead of buttons, it might be faster and more user friendly / intuitive?
John
Re: Multiple IF statement
Hi, welcome to the board,
I think there is a limit to nesting if statements but I'm also sure you are not near it.
Have you thought of using a user defined function with a select case routine?
John
Re: Resize Userform For Different Computers
Hi,
This is likely to be down to the screen resolution used on different computers.
I have seen in the past different ways of changing the screen resolution so I'd start searching there.
You would be surprised how many people this would annoy to the point of not using your workbook though.
John
Re: Two Spreadsheets Within Powerpoint
Hi,
It appears that Powerpoint accepts the objects as individual instances of the source workbook. As a result there is no link between the source and the instance (or instances) displayed on the sheet.
One way round this may be to insert one sheet with all the data you want but to have it display in such a way that it looks like two seperate sheets.
John
Re: Varibles Used In All Modules
Hi,
You could try printing the project to a file and use Word to find and count instances of a word.
Not a vb solution but it may get you your answer.
John
Re: Formula To Vba
Hi,
It might help if you could post a sample woorkbook with an indication of the answer you are hoping for.
John
Sorry, Sicarii beat me to it
Re: Show Sheet Based On Weekday Name
Hi,
In the ThisWorkbook code sheet put a Workbook_Open macro usine
Find the code for making sheets hidden and very hidden by recording macros to get the code.
Personally I would use a Workbook_Close to hide all the sheets and the Workbook_Open to show the one sheet you want.
HTH
John
Re: Document Properties
Hi,
I am not sure you can lock the properties but you could have a befores save event that makes the properties the values you require.
John
Re: Ignore Blank Cells In Mail Merge
Hi,
The answer is in the word doc, not the database.
Try a shuffle around the help file.
To prevent blanks lines with Microsoft Word fields such as IF, SET, and ASK, do the following:
If a field (such as ASK or SET) has no resulting text, you can insert the field within the standard text. If you must place the field in a separate paragraph, format the paragraph mark (¶) as hidden text. Before you merge the documents, clear the Hidden text check box on the Print tab in the Options dialog box (Tools menu).
If text inserted by an IF field must be printed in a separate paragraph, include the paragraph mark in the field instructions. Insert the IF field in the main document; then, with field codes displayed, insert the paragraph mark within the appropriate set of quotation marks. In the following example, Word inserts the paragraph mark that follows "brochure" only if the text is printed.
{ IF { MERGEFIELD Product } = "Pasta" "We have expanded our line of pasta products. Please see the enclosed brochure.¶
" " " } Thank you for your order.¶
John
Re: Return 1st Non Zero Value From Range
Hi, The last one did the trick, just got to sit down and work out how!!
Thanks.
John
Re: Return 1st Non Zero Value From Range
Hmm, still no joy.
See the attached, this may help explaining matters. It may be the way the data is laid out. I have inserted the formula in Col X row 7 to 20 and the results differ per row.
John
Re: Return 1st Non Zero Value From Range
Hi,
Any way of getting this not to return error messages when it encounters zero values or blank cells?
John
Re: Page Number In Word
Hi,
You need to look at Section Breaks and then have the page numbering follow the previous section, or not.
On the header/footer toolbar look at "link to previous".
John
Re: Return 1st Non Zero Value From Range
Hi Krishnakumar,
Works a treat, thanks.
John
Re: Set Page Break In Macro
Pagebreaks do not always appear if the Print Set Up is set to Fit to...
Look there first.
John
Re: Vba-setting Page Break
Hi and welcome,
Just a quicky, have you thought of recording a macro of you setting a manual pagebreak ?
John
Re: Return Data From Leftmost Used Cell
Thanks for the responses, Bill / Sicarri, I'll try them both when I get back to work.
Sicarii, I realise that now, the data is the rightmost but viewed from where I want the answer it's to the left. It's all relative I guess.
TheDude... all the data arrives at once, there's no time element to use but cheers anyway.
John
Hi,
I have 10 columns and 10 rows of data. Not all of the 100 cells contain data.
I am looking for a formula that will return the value contained in the right most non zero or blank cell
Eg Row 1 =
1, 2, 4, 2, blank, 4, 3, blank, 0, blank
In Column 11 I want a formula that returns 3. i.e. it reads accross until it finds a value and returns it.
The target data is not neccesarily unique, the highest or the lowest.
Can anyone help (without nested IF statements as there may be up to 100 columns)
Thanks in advance
John