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...
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...
SQL Compact 3.5 missing in VS2008proSP1Hi,
I have just tried to install / uninstall / re-install / repair
SQL Server compact edition into my VS 2008 Pro SP1
My SQL Server works fine,
However the compact edition does not seem to show in the datasource options
at all.
As a result, when I go and add a 'local database' I get an error.
I have searched the net and can't seem to find a soltuion ( still
searching ).
Any help would be appreciated.
Cheers'
Miro
Solved:
I had to go to the cd and go to WCU\SSCE
and run SSCEVSTools-enu.msi
Cheers'
Miro
"Miro" <miro@be...
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.
...
Change of ISP, MessageLabs and Missing EmailWe have recently had an issue where some people trying to email our
domain cavendishmaine.com have had bounce back messages - Upon looking
more closely at these error messages it appears that the senders mail
is trying to go through our old ISP and then Messagelabs. As none of
these accounts exist the email being returned
Going back 3 months we changed our ISP and cancelled the MessageLabs
service we were using.
Now our domain cavendishmaine.com is with our new service provider.
Our old service provider has confirmed that our domain is nowhere in
their nameservers. I have also asked Messag...
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
...
No password protect workbook box in Tools>Options>GeneralAs is the case with much of this limited CD that was installed, some
important features are missing. I want to password protect any given
workbook. When I went to help (since the Tools>Protection didn't work) it
told me to go to Tools>Options>General, and click on the box that said to
password protect the workbook. As usual, this version has nothing of the sort
on the General tab under Options. Now what?
Why don't you get a full version if you expect full version capability? I'm
at a loss...
*******************
~Anne Troy
www.OfficeArticles.com
"MS" <...
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...
Combo Box ProlemHi All,
I have a combo box that will not let me select the items using my mouse. I
can use the Arrow Down Key and then hit TAB to select the item. The only
thing that I think may be causing this is the ROW source. I have this change
depending on the company location.
See Code that fires when the user select the Customer ID. The 3rd line from
the bottom sets the ROW source for the item. The combo box is bound to a
feild called ITEM. Maybe this should be unbound. Can anyone help?
Thanks
Private Sub CustID_AfterUpdate()
Dim stFilter As String
Dim stEmp As String
Dim stCoNum A...
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):...
Missing Folders #2I use Outlook 2003. A few weeks back after migrating from OE to Outlook, I
suddenly realised the many Folders and sub-folders went missing? Is there any
way to recover these Folders?
Impossible to say since you provided no troubleshooting information on what
you "migrated" and how.
--
Russ Valentine
[MVP-Outlook]
"selwyn" <selwyn@discussions.microsoft.com> wrote in message
news:3AB3B1EE-CC46-4C70-8B08-9C03EFF4949F@microsoft.com...
>I use Outlook 2003. A few weeks back after migrating from OE to Outlook, I
> suddenly realised the many Folders and sub-folder...
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...
Dialog box iconHi,
I would like to know how can i change the default icon of my dialog box ?
I don't find anywhere a setting for that.
tia,
Maileen
"Maileen" <nospam@nospam.com> wrote in message
news:%23$SetP98DHA.1948@TK2MSFTNGP12.phx.gbl...
> Hi,
>
> I would like to know how can i change the default icon of my dialog box ?
> I don't find anywhere a setting for that.
> tia,
See if using WM_SETICON or CWnd::SetIcon is the solution.
--
Jeff Partch [VC++ MVP]
...
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...