TEXT = textI have some data in an Excel table which uses case sensitive codes. Does
anyone know of a way to perform case sensitive VLookups.
Example.
A1 contains "TEXT", A2 contains "One".
B1 contains "text", B2 contains "Two"
If I enter "text" in cell A4 and the following VLookup in B4:
=VLOOKUP(A4;A1:B2;2;FALSE)
I get the answer "One", but I would like to see "Two".
I have found a work around by converting a number of characters to their
ASCII codes, but this is very messy.
I know that the FIND function is case sensitive whe...
display asI've tried to change the "display as" field, but it always resets to as in
the "full name" field. (When I send to a contact, o nthe "to:" field ends up
showing the "full name", instead of the "display as" name I've tried to
save. What am I doing wrong?
Is there a way where I could assign "nick names", so it's easier to identify
contacts rather going through a list of the same first names or last names?
each time?
thanks.
#1) Outlook version?
#2) How are you trying to change the Email Display As field?
...
Selecting text in a documentHi, I have a macro which finds a certain piece of text in the document and
then moves down a line and then selects all the text between that and the end
of the document and the selected text is later sent out in an email. This has
been working for some time but I have recently had some problems because the
text is not being selected as before (extendmode on?) and I am sending out
blank emails.
The code fragment that I use to select the text is as follows
Selection.HomeKey wdStory
Selection.Find.Execute "Issued at"
Selection.MoveDo...
What is the Limit of Text Boxes & Labels a User Form can have?What is the Max File Size a User Form can be?
I have Windows 7 with Office 2007.
Does it have like a 64K limit?
The file size as far as kb. My entire Program is 1,203 Kb.
When I ran it I got a "compile Error out of memory", so I exported my User
Form. Then I looked at the file size of just the User Form in a blank
Workbook
34 KB = .frm
219 KB = frx
My user Form is a Multi Page with 4 Pages on it. There are alot of text
boxes and labels on the 4 sheets. Is there a limit to the number of text
boxes & labels you can have in a user Form?
I have 12 GB of ...
Resizing cells to fit text returned by VLOOKUPI have some VLOOKUPs which sometimes return 50 or 60 characters (they're in
merged cells). I want the text to wrap, and the cell to enlarge to fit the
text - Just like it does whan you type it in, but somehow, because it is
being returned from a formula it just displays the bottom line of the
wrapped text, and doesn't resize the row.
Anyone know how I cam make it fit?
I'm happy to use a VBA solution if there's no built in way to make it happen
automatically.
Thanks
M
Would you mind to limit your request to ONE newsgroup?
Joerg
"Michelle" <mh_londonNOJUN...
CScrollView and text heightI call DrawText to draw text on the CScrollView.When text has multi-line,how
do I get the screen height to draw them?
Thanks.
___________________________________
http://www.msale.net/bbs
a Chinese-language message board for developers,including
palm,ppc,symbian,and etc.
http://www.zirong.net/blog/
Miken's private life
If you are trying to calculate the height of a multiline string user
DrawText with the DT_CALCRECT flag.
It will use the width of the Rect that you pass it, and sets the bottom of
the rect to what the bottom would be if you draw it.
AliR.
"Miken" <mikenwon...
Text Boxes on Charts not showing upHas anyone experienced this? I've got a chart in a
spreadsheet and I add text boxes to the graph section.
They appear on the page yet when I click off the page,
the text box disappears. If I go to print preview, the
text boxes are there so why can't I see them on the
screen? I've tried the bring forward command but that
didn't work. This is also sporadic as some of my text
boxes stay in place why others seem to disappear.
Sue -
If the chart is selected when you draw the text box, the text box
becomes part of the chart. If not, the text box just floats along in the
dr...
Account Overview report does not display subaccountsHi all,
I don't know if I am missing something here but it seems the Account
Overview report does not display subaccounts, even after I modify the
include/exclude drop down and refresh the report (or click on View
Report).
I would like to display a hierarchy of subaccounts for the selected
parent account. I thought that the Account Overview report was
intended to do that!
Thanks,
Mohamed
...
avoid losing text when text submission timed out?Often I have to log in to some web site to enter a few paragraphs of text
(e.g. web email submission, user forum, product reviews, etc). Sometimes it
takes me a while to compose the text, and by the time I click submit, I get
a response saying the session has timed out, and the text that took me a
long time to compose is gone.
Is there a way to retrieve this text? Clicking the back button doesn't work.
Perhaps it is in a cache somewhere?
The portion of the web page containing your text may or may not be in
TIF, but here's what I do: Before I hit the 'Submit'...
Ranking Numbers with TextI am trying to sort a list of serial numbers containing alpha an
numeric text into ascending order so LOOKUP will work. ie:
5KJJAHAS63PL84681 input into col. E
5KJJAHAS43PL84685
5KJJAHASx3PL84683
5KJJAHAS83PL84686
5KJJAHAS63PL84689
5KJJAHAS43PL84684
5KJJAHAS23PL84682
5KJJAHAS03PL84688
5KJJAHASx3PL84610
5KJJAHAS83PL84690
5KJJAHAS83PL84691
Only the ninth and 13 thru 17 digits change.
Worksheets are protected except for inputs.
I need the sort to use the LOOKUP function.
I tried =IF(E3>0,(RIGHT(E3,5)*1),999999) to RANK by the last 5
=RANK(D3,D$3:D$102,1)+COUNTIF(D$3:D3,D3)-1,
but then LOOKUP ...
Null in text boxCan anyone see what might be wrong withthis procedure?
Private Sub Job_Number_BeforeUpdate(Cancel As Integer)
If IsNull(Me.Job_Number) = True Then
MsgBox "No Job Number Entered"
Cancel = True
End If
End Sub
--
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/Forums.aspx/access-formscoding/200707/1
"Haggr1 via AccessMonster.com" <u35393@uwe> wrote in
news:74fa8171f7137@uwe:
> Can anyone see what might be wrong withthis procedure?
>
> Private Sub Job_Number_BeforeUpdate(Cancel As Integer)
>
> If IsNull(Me.Job_...
convert text case in same column or row?How do I convert text case in the same colum or row. At the moment I use
UPPER, but have to create a new column/row.
You may find this to be handy
Sub ChangeCase() 'Don Guillett
Application.ScreenUpdating = False
Dim r As Range
nCase = UCase(InputBox("Enter U for UPPER" & Chr$(13) & " L for
lower" & Chr$(13) & " Or " & Chr$(13) & " P for Proper", "Select
Case Desired"))
Select Case nCase
Case "L"
For Each r In Selection.Cells
If r.HasFormula Then
r.Formula = LCase(r.Formul...
I TYPE IN A TEXT BOX AND IT COPIES THE TEXT TO OTHER TEXT BOXESDoes anyone know how to fix this?
Shari wrote:
> Does anyone know how to fix this?
================================
Are you editing text on the Master page?
--
John Inzer
MS Picture It! -
Digital Image MVP
Digital Image
Highlights and FAQs
http://support.microsoft.com/ph/695
Notice
This is not tech support
I am a volunteer
Solutions that work for
me may not work for you
Proceed at your own risk
Yes, I thinnk so. :-) I'm not on the background. It's an 8 pg brochure I'm
creating and it didn't do it before I added page 8.
...
Re: Using Text StylesFront page will not have a Next Edition. AFAIK it is dead.
> Ed Bennett wrote:
> > Ron Hagley wrote:
> >> I have a document with Headings on one line followed by a linespace
> >> then on a new line a subheading followed by (on the same line ) a
> >> description
> >>
> >> I wish to use TEXT STYLES as this pattern repeats many times, I have
> >> no problem seting up the styles for the headings, but when I do the
> >> same for the SUBHEADINGS the text style is applied to the WHOLE line
> >> including the description...
Text in Cell as Formula #2Peo + Julie Many thanks for your answer with the last query.
I Have a similar question, please advise:
This method [INDIRECT()] does work with values form a different spreadsheet.
I type the link (as text) from a different spreadsheet in a cell in the
current spreadsheet and use this method to call a value in a cell.
Would appreciate a detailed answer (if complicated) - I'm a novice user!
Many thanks in advance.
...
Logical Test: Text Against Number 01-05-10Can anyone provide insight into how Excel treats this type of test? For
example, why does Excel return TRUE when we have ="a">2 but FALSE when ="a"<2
(or any other number for that matter).
Thanks.
That's the way it is treated. Any kind of text is larger than the largest
number.
Any worth? hit the YES below
--
Max
Singapore
---
"rslaughter5" wrote:
> Can anyone provide insight into how Excel treats this type of test? For
> example, why does Excel return TRUE when we have ="a">2 but FALSE when ="a"<2
...
Rotate text?Office(publisher) 2K.
Is there anyway to rotate a specific word in a sentence?
L.
Not if it's part of the sentence rather than being a separate text box.
--
JoAnn Paules
MVP Microsoft [Publisher]
"L." <ofallon12320@yahoo1.com> wrote in message
news:%23TBzesS9FHA.2616@TK2MSFTNGP15.phx.gbl...
> Office(publisher) 2K.
>
> Is there anyway to rotate a specific word in a sentence?
>
> L.
>
>
Thanks for the info.
L.
"JoAnn Paules [MSFT MVP]" <jl_paules@hotmail.com> wrote in message
news:U46dnd7PfZ5CTBHenZ2dnUVZ_sidnZ2d@suscom....
Plain text warning/ VS2005Whenever I add a CRecordset derived class, I get an error telling me the
password for the DB is sent in "plain text" and is not secure etc. I
comment that line out, but how much of a security risk is this? What can I
do with my Access database to avoid this? VC 6.0 never gave this error...
tia
b
If you are on any kind of network that anyone can look at, you are wide open for attack.
Example, a University network; potentially, ever student can be running a packet sniffer
and see your password. Anything that passes acros the Internet outside your local
intranet is also vuln...
shading behind textI would like to place white text within a box of gray shading. When I
use the 'background' function, it shades the entire document. How do I
limit the background to a line of text?
thanks
Ken
Depending on your preference I can think of at least 3 ways, but they all
may not be available to you... or instructions may vary. It depends on what
version of Word you're using & you haven't even indicated whether it's
Windows or Mac. Since you posted to the Mac Word group I'll assume you're
using a Mac version & further that it is the most current (2008):...
How to get the text of each selection?Hi, Dear All
We can use Ctrl key and mouse to multi-select range in a document, but if
somebody could tell me how to get the text of each selection?
Cheers!
osen
Sorry, it is not really possible. See
http://support.microsoft.com/?kbid=288424.
The closest you can come is to use Selection.Copy, then open a new
blank document and paste. The individual pieces will be separated by
paragraph marks, but you can't distinguish between those and any
paragraph marks that might have been in the middle of some pieces.
--
Regards,
Jay Freedman
Microsoft Word MVP FA...
Text Search in for the field of memo does not workdhello,
Here is my VBA, but does not work for text search in my textbox search.
Private Sub Txtcari_AfterUpdate()
Dim strSQL As String
strFilter = "([Nota] LIKE """ & "*" & Me.Txtcari & "*" & """)"
Me.Filter = strFilter
Me.FilterOn = True
CurrentDb.Execute strSQL, dbFailOnError
End Sub
Thanks in advance for your help.
--
H. Frank Situmorang
You've declared strSQL, and you attempt to use its content with the Execute
method, but you haven't assigned anything to it.
--
Doug Steele, Microsoft Access M...
Further Info on changing text in one cell to to criteria of another.I have a workbook that charts the progress of my clients. One of m
cells automatically determines their age, and when they become olde
than six, I need another cell's text to automatically change to "AO
(standing for "Aged Out" of my program). I cannot us the functio
=IF(A1>6,"AO"," ") because I already have the clients status imputed i
that cell. I need it to be a type of conditional formatting or VB cod
so that it will automatically change once the reach 6. I have attache
an example of my workbook. It has a VB code that changes the row colo
based on ...
Excel format displayDoes anybody know how to display the keystrokes in Excel to assist in editing?
Donna
The wording here is a little ambiguous.
Could you re-post with a better descriptions?
If you want a list of shortcut keys for editing, see Help>Answer Wizard or
Index on "shortcut keys".
Gord Dibben Excel MVP
On Tue, 1 Jun 2004 06:21:03 -0700, "Donna"
<anonymous@discussions.microsoft.com> wrote:
>Does anybody know how to display the keystrokes in Excel to assist in editing?
...
Cropping text from a numberHi
I am doing a staight comparisions of two numbers in two
different cells (a percentage increase)
However one of the numbers I am using has an asterisk on
the left hand end of the number.
Obviously excel cannot calculate the increase given it is
not redaing the cell as a number.
How can I right a formula so that excell does not read the
asterisk rather only the number
any help would be appreciated
Hi Matt!
You could set up an extra column to the right of the offending numbers
and use:
Data > Text to Columns
Or you could set up and extra column and parse the offending numbers
...
Current Year to display in textIs there a way to get the current year to display in a title if there is
other text with it?
For example:
I have a sheet with the following text in it: 2011 Benefit Time
I'm looking for a way have just the year update itself at the change of
the new year so when someone opens a blank form in 2012, it will read
2012 Benefit Time
Again, the title is all in once cell with it centered. I would rather
not place the date in the cell by itself. Is there a way to insert just
a date prior to text inside a cell? Or Is there an insert date option
like in MS word?
Hi Gadgetman,
Am Thu, 23 ...