How do I set up an argument which asks for multiple criteriaI am trying to use an argument that asks for one of three criteria (2345P,
8319T, or 7026J) in cell C108, and if it finds it, enters the amount of yet
another cell, G108 into cell K108, and if not enters 0 into cell K108.
It seems there are too many arguments for the "if" argument, and I can't
seem to get the "lookup" argument to work either.
Is there another argument I should be working with?
Thanks
--
Diver
Try:
=IF(OR(C108="8319T",C108="2345P",C108="7026J"),G108,0)
"bj" wrote:
> try in K108
> =if(or(c108=&qu...
setting up new outlook mail accounti can not set up a new account on my outlook, i keep saying establish network
connection with a correct sign but searching for my mail account shows X
can you please advise
Are you trying to setup a POP3 mail account or an Exchange account? Also,
what version of Outlook are you using?
"rashid" <rashid@discussions.microsoft.com> wrote in message
news:C59D04C0-C1C9-4BD1-AE00-2009D25B221D@microsoft.com...
> i can not set up a new account on my outlook, i keep saying establish
> network
> connection with a correct sign but searching for my mail account shows X
> ...
OWA Set Rule problemI have successfully install the Exchange 2003 with SP1 in the Windows Server
2003. Anything alright exclude the rules function in OWA. I try to set the
rules from any then "move to" or "copy to" specify folder are no problem,
but "forward to" other email address, its don't work. I try to input the
email address in the contact and then select from the contact, but the result
also don't work. The rules can save and I can receive the incoming email in
the Exchange 2003/Outlook or OWA, but it don't forward to my specify email
address. I try to...
How do I set the 'Set Synchronizing Client' fieldWe have a number of outlook clients using CRM that have the 'Set
Synchronizing Client' select box greyed out. We need to tick them so that
they are able to synchronize tasks etc.
Can any one help me find out why these are greyed out and then set them so
that they can synchronize
thanks
In my experience, that checkbox is always greyed out for the first
install that is performed for a user. The only time that checkbox
becomes active is if a second copy of CRM is installed for a user who
already has CRM installed on another PC....
Normally the box is checked and grey. If that is...
How to set backcolourHello All
I have a continuous form containing a number field (long integer) called
[v_colour]. This field contains the number of a certain colour - as per the
numbers that are used in the format properties for back colour etc. I would
like to set the back colour for the form's [v_colour] text box to be the
value of the field:
e.g.
If the value of [v_colour] in the first record is 255, I want the back
colour of the textbox for that record to be bright red.
I tried this as the OnLoad event for the form:
[v_colour].backcolour = [v_colour].value
.... but this resulted in the back colour of...
Formating text of x-axix valueI make a chart with x-axix values from let's say 1E-9 to 1E-3, using
logaritmic scale. So far so good.
But my need is not to display the values in the chart like 1E-9, 1E-8, etc.
but like 10-9, where the -9 text will be formated as upper index.
Thx for any help or suggestion.
see
http://www.stfx.ca/people/bliengme/ExcelTips/Exponents_in_Cells_and_Charts.htm
best wishes
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email
"Karel" <Karel@discussions.microsoft.com> wrote in message
news:DA5042AE-A412-4CB3-B823-89741DAF8FFD@microsoft.com...
>I mak...
Applying Percent Decrease Across Set Periods
I have a column which includes dates when items were purchased. I have
used the DATEDIF function to find the number of years between that date
and today's date. I now want to decrease the purchase amount 10% for
every year calculated via the DATEDIF function.
Any ideas, is this possible, why can't I think...?
--
Hunt&Peck
------------------------------------------------------------------------
Hunt&Peck's Profile: http://www.excelforum.com/member.php?action=getinfo&userid=32961
View this thread: http://www.excelforum.com/showthread.php?threadid=527873
...
Set Regional Settings but not LanguageHi
I have a multi-language APP
en-US, es-ES, it-IT
I usually change Languages and Locales by using the CultureInfo
to switch Languages
System.Globalization.CultureInfo myCI = new
System.Globalization.CultureInfo("es-ES");
My issue is - what if the user wants to View App in english and use the
Regional Options on a PC in say Spain ???
If I change the CultureInfo to en-US then they can view APP in English (
English satelite assemblies) but date and numbers will be in US format
If I change the CultureInfo to es-ES then date and numbers will be in Spain
forma...
Work Hours setting excludes specified hours from SchedulingI am miffed by this problem. I specify a work hour schedule for a user.
When I schedule a CRM User as a Resource for a Service in Scheduling of a
Service Activity with Requested Time of ASAP and click Find Available Times,
the values for Avilable Times returned are outside of the Work Hours I
specified for the user and not within the work hours. When I drill into the
Work Hours for this User, the Calendar view shows Cross Day rather than
8:00AM - 5:00PM I speciied for work hours and editing the hours reveal the
correct hours in the Work Hours. What gives?
Never mind. Figured out w...
Reading Pane SettingsI did a search for an answer to this question and have not found one. If I
missed an answer already posted, please direct me to the right place.
I have Outlook 2007 and set up the "right" reading pane for my e-mail. Now
when I go to my calendar it is set up the same way - calendar on the left
(same size as the inbox) and then there is a blank space to the right that is
the size of the reading pane/preview. To the right is the to-do bar (which I
have no problem with). I don't know why there is a reading/preview pane on
the calendar when there is nothing to preview, and I...
Outlook "Arrange By" option does not retain its settingIn outlook 2007, I use a custom view for my inbox, and I have the Group By
option checked to"Automatically group according to arrangement."
This has been workn flawlessly until today, when I realized Outlook did not
like a particular mouse click; perhaps I clicked on the border of two options
or some other anomoly that caused the window toflash once. The end result
was that my Arrange By option changed to "From" when I had previously set it
to "Conversation." Now, whenever I hange it backto "Conversation," leave the
inbox and come back, ...
Need to sum values that are not strikethroughsI need to sum a column without it adding the rows that have strikethroughs
values; is it possible to combine a formula and vb code to a cell ?
=SUM(BH100:BH120) & Activecell.selection.font.strikethrough = false
Thank you
Khf
Try:
Function zum(r As Range) As Double
Dim rr As Range
For Each rr In r
If rr.Font.Strikethrough = False Then
zum = zum + rr.Value
End If
Next
End Function
In the worksheet use it like:
=zum(A1:A10)
--
Gary''s Student
"Rock" wrote:
> I need to sum a column without it adding the rows that have strikethroughs
> values; i...
Detecting if a string has one or more 16-bit charactersHow do you go about it in a unicode build?
As far as I'm concerned, there is no absolute method.
I do recall a recent MSDN magazine article that pointed out that NotePad
automatically does this and can sometimes get it wrong. Seems there is a
function to do this (sorry, I can't recall where it was or the name), but
that it used statistics, which not always correct. I'm sure that the shorter
the string, the harder it would be to guarantee correctness.
--
Jonathan Wood
SoftCircuits Programming
http://www.softcircuits.com
"flect" <flect@example.net> wrote in m...
interactive buttons, multiple setshi folks
I'm sure one of you good folks will save my bacon as usual
I have a series of websites, all of which exhibit the same odd behavior with
interactive buttons.
I have a bunch of buttons in the left margin, each of which pulls up ( lets
call it ) a chapter, and in each 'chapter' are a number of related pages.
On the top of each page is an imbedded page which has 'page numbers' for all
the 'pages' in that chapter. So, it's a grid where the 'vertical' buttons in
the left margin and the 'horizontal' buttons at the top comb...
How do I set OORI have searched the help menu and have had no luck finding out how to set my
outlook 200 to send an OOR (Out of Office Reply) Any assistance would be great
If you are in an Exchange environment (ask your administrator if you do
notknow) you can set the Out of the Office Assistant which is located under
Tools.
If you are not in an Exchange environment you can create a rule that replies
on all e-mails. The downside of this is that you'll have to have your
Outlook open all the time for the rules to process. Make sure you set some
exceptions (for instance based on the subject field so ...
Set FocusI have text box that I input data into and I was wondering if it is possible
to set focus to the text box and avoid clicking on the box. I thought the
term is Set Focus, but can't find any information or example that would help
in doing so. Any help would be appreciated .. PPT 2003.
Look at the following page for code to set focus on a text box:
http://officeone.mvps.org/vba/activate_shape.html
- Chirag
PowerShow - View multiple PowerPoint slide shows simultaneously
http://officeone.mvps.org/powershow/powershow.html
"Phil K" <PhilK@discussions.microsof...
Set published amount of calendar informationHey guys!
Is there any way I can have Exchange 2000/2003 force the amount of time
published in the outlook calendar? I know that you can go into the the
calendar options and set the amount you want published, but is there a way to
have exchange require the amount that is published so that I could get
everyone to publish a year's worth of calendar data instead of one person
being set at 2 months and another at 6 months and another at 12?
Thanks!
Mike
On Thu, 29 Jun 2006 06:18:02 -0700, Mike
<Mike@discussions.microsoft.com> wrote:
>Hey guys!
>
>Is there any way I c...
Publisher 2003 Need to set business card to Avery 5371 settingI need to set the print settings so the business cardd that I created will
print on Avery 5371 business cards
Okay.........and your question is?
--
JoAnn Paules
MVP Microsoft [Publisher]
"Jonathan" <Jonathan @discussions.microsoft.com> wrote in message
news:187615DD-9EF1-42A2-8436-78E6E6C6ACE4@microsoft.com...
>I need to set the print settings so the business cardd that I created will
> print on Avery 5371 business cards
Page setup, business cards, click change copies per sheet, type > .5 top, .75
side, zero gaps.
Avery 5371 is a standard business card s...
moving values from sheet to another
I would like to know if it is possible to create a formula on one shee
(sheet 2) and copy that resulting value to another sheet (main sheet)
So when I make changes to the formula on sheet 2 it will update on th
main sheet and be used in another formula on that sheet (main sheet)
Is this possible? Thank you. :) :
--
makdaddy92
-----------------------------------------------------------------------
makdaddy925's Profile: http://www.excelforum.com/member.php?action=getinfo&userid=2938
View this thread: http://www.excelforum.com/showthread.php?threadid=49189
On the main sheet in the ce...
Crosstab queries, <> and null valuesHi everyone,
I have a crosstab query attached to a graph on a report. It shows
quantity of widgets produced by each employee for a specified period.
The client wants all months shown regardless of zero widgets. If I
just use the Access graph wizard, it only shows the months when there
are some values not all months with or without zero values.
The final graph is supposed to be sum(widgets) and each bar represents
a worker.
So...
MonthSt WorkerName #Widgets
01/Jan/2010 Bob 10
01/Jan/2010 Dave ...
Count based on string in cellUsing Excel 2007. I am not sure if I am trying to do is too ambitious.
My single column sheet looks something like this
A1
abc
abc, def
abc, ghi
def
def, ghi
abc, def, ghi
ghi
Possible values are abc, def, and ghi in any combination but always in
alpha order
I want to:
Chart the responses on
how many cells have only 'abc',
how many cells have only 'def''
how many cells have only 'ghi',
how many cells have 'abc' & 'def' & 'ghi'
how many cells have 'abc' & 'def'
how many cells have 'abc...
remove div/0 values in excel cellsHello Members,
I have a problem with Excel ,currently working with Cells .Where I want
to remove Div/0 value from excel cell.
Help me please,Its a production problem...
Thanks In Advance
Ash
Hi Ash,
=A1/B1; replace with =IF(B1=0,"",A1/B1)
--
Kind regards,
Niek Otten
Microsoft MVP - Excel
"ash" <garika.ashwin@gmail.com> wrote in message news:1163567648.449309.242100@f16g2000cwb.googlegroups.com...
| Hello Members,
| I have a problem with Excel ,currently working with Cells .Where I want
| to remove Div/0 value from excel cell.
|
| Help me please,Its a produc...
Setting the SettingsReally quickly: How (exactly) does one get Publisher to remember the page
settings I want. ie. every time I open a new document, I get centimeters,
and usually, I'd prefer inches.
I have not been able to find a "Save Settings" option anywhere. Can anyone
help?
thomas
In Publisher 2000 it's
Tools
Options
General tab
Measurements unit box - select inches.
OK
That should do it.
--
Don
--------
Vancouver, USA - One of the great cities in one of the 45+ countries in
America!
"ThomasL" <tlammert@netcom.ca> wrote in message
ne...
"Object or class does not support the set of events" Quick QuestionAll,
I built a MS Access database in MS Access 2003, which I have set up in
a shared folder. I have a form with some standard components such as
text boxs, bottons. When a user updates the form I wish to record the
time/date and username in the record. I have posted a copy of the code
I'm using for the "BeforeUpdate" event below. Now this works fine on
my machine and updates without a problem. However when a user on
another machine (also using MS Access 2003) tries to update the same
field, he gets the following error:
"The expression Before Update you entered as the eve...
Strange permission Settings.Hey folks I got a strange problem and i think it has somthing to do with
permisions server end but it is possible this could also be a client side
problem
Okay so im on the support desk we have a number of users that access an
exchange 2003 server using outlook 2003 some teams share access team maiboxes.
When they try to add a custom field to (in tasks or email) on a shared
mailbox they recive this error message "You do not have sufficient permission
to perform this operation on this object. See the folder contact or the
system administrator"
But they have full rights to it an...