Can't find Kbase article c2010059

I'm looking for a Business Objects Kbase article referenced in several outside threads a couple years ago.  It deals with making superscripted text in Crystal Designer.
The URL is listed as http://support.businessobjects.com/library/kbase/articles/c2010059.asp c2010059.asp
The link does not produce the article.
Any help would be greatly appreciated.

Here is the article pasted below
KBase Article ID:c2010059
Article refers to:Crystal Reports 7
Symptom
How can you display a date field or a numeric field with superscript text in Crystal Reports?
For example:
There is a date field in Crystal Reports and you want to customize the date to show a superscripted extension.
December 3rd, 2001
You want the "rd" to appear smaller and slightly higher than the date field text.
When you attempt to customize the date you do not see an option for superscript style.
Resolution
In Crystal Reports, there currently is no option available to automatically format a field to display a superscript style. However, you can create a formula to display as superscript style in Crystal Reports.
===== USING A DATE FIELD =====
The following example is based on using a date field in Crystal Reports:
1. From 'Insert, select 'Field Object'. This launches the 'Field Explorer'.
2. Select 'Formula Fields', and click the 'New' icon.
3. Type a name, such as ExtensionDate, and click 'OK'. This will launch the formula editor.
4. Create a formula similar to the following:
// This formula will parse the day value out of a date field
// verify the value and then assign the appropriate script extension.
//This formula will work on all number fields.
//script extension held in an array
stringvar array A := ["st","nd","rd","th"];
//verify the length of the parsed day value and assign it to a number variable.
//in this sample the reason for using LLength as a variable name is due to "Length"
//being a reserved function name
numbervar LLength := length(totext(day({Orders.Order Date}),0));
//changes the parsed day value to text, extracts the given number (1) of text characters
//from the right side of the specified string and assigns it to a string variable
stringvar dDay:= right(totext(day({Orders.Order Date}),0),1);
//changes the parsed day value to text, extracts the given number (2) of text characters
//from the right side of the specified string and assigns it to a string variable
stringvar xDay:= right(totext(day({Orders.Order Date}),0),2);
//there are 3 exceptions to the script extension, the number values 11, 12, 13 all have
// the "th" script. Comparative to 1st, 2nd, 3rd.
// the following steps check the values and assign the appropriate script.
if LLength = 2 and xDay = ["11","12","13"] then A[4] else
if LLength = 1 and dDay = "0" then " " else
if LLength = 2 and dDay = "0" then A[4] else
if dDay = "1" then A[1] else
if dDay = "2" then A[2] else
if dDay = "3" then A[3] else
if dDay >= "4" and dDay <= "9" then A[4]
else
if LLength = 2 and dDay >= "10" and dDay <= "20" then A[4]
5. Save and close the formula.
Creating and formatting the formula
==========================
Ensure you are in Design view of your report.
1. From 'Insert', select 'Text Object'. Place the text object where you want to display the formula output.
Formatting the Date Field
==================
A. From 'Insert', select 'Field Object'. This launches the 'Field Explorer'.
i. Select the <Date.DatabaseField> and place it on the report.
ii. Right-click the <Date.DatabaseField>, from the fly-out menu,
select 'Format Field'.
iii. Select 'Customize', then select the 'Date' tab.
iv. From the 'Format' window, select 'Month' to appear as the written
name, select 'Day' to be any format, and select 'None' for 'Year'.
v. Click 'OK'.
B. Copy and paste the <Date.DatabaseField> back into the
report so there are 2 copies of this field.
i. Right-click the <Date.DatabaseField>, from the
fly-out menu, select 'Format Field'.
ii. Select 'Customize', then in the 'Format Section' of
the 'Date' tab, select 'Month' to appear as 'None', select
'Day' as 'None' and select 'Year' to be any format you want
it to appear as.
iii. Click 'OK'.
C. Select the <Date.DatabaseField> that is formatted with the
Month and Day appearing and place it in the text object.
2. From the 'Field Explorer', select the 'ExtensionDate' formula and place it somewhere on the report so you can format it.
3. Right-click the formula field, select 'Font', and select the color 'White'. The reason you are formatting the text white is so that you can overlay the 2 fields in the following step.
4. Select the formatted formula field and place it in the text object beside the <Date.DatabaseField>.
5. Select the <Date.DatabaseField> that is formatted with only the year appearing and place it in the text object next to the ExtensionDate formula field in the text object.
NOTE: =====
If you want any other text to be included in the field, place it in the text object.
==========
6. Copy and paste the text object on to a blank space of the report. You must make a duplicate copy of this text object and paste it in the report. You will now have 2 text objects that are exactly the same.
7. In the copied text object, double-click on the <Date.DatabaseField> to select it. The <Date.DatabaseField> field will be highlighted in black.
8. Right-click the field highlighted, select 'Change Font', and from the 'Font' tab, select the color 'White'.
Repeat steps 8 and 9 for both the formula field that is currently formatted white and the Date.DatabaseField>, and select them to be black in color.
9. Insert this field on top of the other text object adjusting the placement of the visible text to show as superscript.
When previewing the report, the text will appear to display as superscript text.
TIP: =====
To create a subscript font, complete steps 1 through 9 in this knowledge base article. To create the subscript font, you must insert the formula into the report, place it lower than the field. For the sample provided in this knowledge base article, a superscript font was created and placed higher than the field.
==========
===== USING A NUMERIC FIELD =====
The following example is based on using a numeric field in Crystal Reports.
1. From 'Insert, select 'Field Object'. This launches the 'Field Explorer'.
2. Select 'Formula Fields', and click the 'New' icon.
3. Type a name, such as Extension, and click 'OK'. This will launch the formula editor.
4. Create a formula similar to the following:
//This formula will verify the value and then
//assign the appropriate superscript extension.
//This formula will work on all number and date
//fields.
Whileprintingrecords;
stringvar array MyArray := ["st","nd","rd","th"];
numbervar FieldLength := length(totext({Orders.Order ID},0));
stringvar Check1 := right(totext({Orders.Order ID},0),1);
stringvar Check2 := right(totext({Orders.Order ID},0),2);
if FieldLength >= 2 and Check2 = ["11","12","13"] then MyArray[4] else
if FieldLength = 1 and Check1 = "0" then " " else
if FieldLength >= 2 and Check1 = "0" then MyArray[4] else
if Check1 = "1" then MyArray[1] else
if Check1 = "2" then MyArray[2] else
if Check1 = "3" then MyArray[3] else
if Check1 >= "4" and Check1 <= "9" then MyArray[4]
5. Save and close the formula.
Creating and formatting the formula
=======================
Ensure you are in Design view of your report.
1. From 'Insert', select 'Text Object'. Place the text object where you want to display the formula output.
2. From 'Insert', select 'Field Object'. This launches the 'Field Explorer'.
3. Select the <Numeric.DatabaseField> and place it in the text object.
4. From the 'Field Explorer', select the 'Extension' formula and place it somewhere on the report so you can format it.
5. Right-click the formula field, select 'font', and select the color 'White'. The reason you are formatting the text white is so that you can overlay the 2 fields in the following step.
6. Select the formatted formula field and place it in the text object beside the <Numeric.DatabaseField>.
NOTE: =====
If you want any other text to be included in the field, place it in the text object.
==========
7. Copy and paste the text object on to a blank space on the report. You must make a duplicate copy of this text object and paste it in the report. You will now have 2 text objects that are exactly the same.
8. In the copied text object, double click on the numeric database field to select it. The numeric database field will be highlighted in black.
9. Right-click the black field highlighted, select 'Change Font', and from the 'font' tab, select the color 'white'.
Repeat steps 8 and 9 for the formula field that is currently formatted white and select it to have a black color font. If you placed another field in the text object, format the field to also be white.
10. Insert this on top of the other text object adjusting the placement of the visible text to show as superscript.
When previewing the report, the text will appear to display as superscript text.
TIP: =====
To create a subscript font, complete steps 1 through 9 in this knowledge base article. To create the subscript font, you must insert the formula into the report, place it lower than the field. For the sample provided in this knowledge base article, a superscript font was created and placed higher than the field.
==========
MORE INFORMATION ON ARRAYS
The technical brief, Advanced reporting techniques using arrays, can be
found on our support site by searching for the file name, cr_arrays.pdf at:
http://support.crystaldecisions.com/docs
Regards,
Raghavendra

Similar Messages

  • Where can I find an article on how to publish CI as Web Services in PT 8.46

    We have PeopleTools 8.46, and we want to integrate it to a customized application that we are building using ADF, we are considering the option the above option, of publishing the needed components interfaces to web services and consuming them from the ADF.
    I did some research and I could find 8.48 materials in OTN, but not 8.46.
    Help is appreciated
    Regards
    Mohamed

    We have PeopleTools 8.46, and we want to integrate it
    to a customized application that we are building
    using ADF, we are considering the option the above
    option, of publishing the needed components
    interfaces to web services and consuming them from
    the ADF.
    I did some research and I could find 8.48 materials
    in OTN, but not 8.46.If you read the release notes for PT 8.46, 8.47 and 8.48 you might find some clues to that.
    Afair the SOAPtoCI should be present since PT 8.47 at least, but I might be wrong.
    ExceltoCI is there for a long time and that uses SOAPtoCI afaik.
    So you might be on the wrong Tools for what you want, at least if it comes to OOTB WebServices using CIs.
    Cheers & HTH
    Peter

  • Recovery HD can't find OS X Lion in the Appstore

    Hey guys!
    When I'm trying to install Mac OS X Lion on my MacBook (mid 2007) the Recovery Assistent says "Can't find the article".
    Can I download the InstallESD.dmg in the Internet?
    I had bought the license from the App Store.
    Thanks,
    Matthias
    If it's pertinent I'm from Austria.

    You'll need to request the App Store support from Austria to make it available again.
    And no it is not available from anywhere on the internet legally except from the App Store.
    Apple did not make the internet restore option on boot available until Macs in 2010.
    For more on that, see this article Computers that can be upgraded to use OS X Internet Recovery - Apple Support

  • Where can I find the ColdFusion Amazon Machine Image (AMI)?

    According to several articles I read last year prior to the release of ColdFusion 9, Adobe made an Amazon Machine Image for CF9 available.  However, I can't find it anywhere on Amazon's AMI list.  Conducting a search on adobe.com and these forums, I can't find any articles discussing the use of CF9 on EC2.
    Can someone confirm whether or not there is a publicly available CF9 AMI image and where I can find it?  Alternatively, any existing articles on how to set one up with CF9 would be helpful.
    Thanks,
    -Jose

    Bump... beyond the information released in Oct 2009, its been quiet.
    Any updates - particularly from Adobe?

  • HT1420 Can't figure out how to authorize my PC, tried everything no article makes sense to me, or I can't find the area on my Itune display

    For the life of me, whenever an article says go to "store" and then click on authorize, I can't find the area, no matter how hard I look, I am a senior citizen, and use a PC, maybe this is an Apple thing...I do have an Iphone and love it, but I purchased a song, and it will not download, it always says something like the network terminated......can someone please direct me to a place when I'm in the Itunes store where to click....Pleeeeeeaaaaase many thanks in advance ....grandpa Peter

    If you're running iTunes 11 and you don't see the menus, press Control-B or go to the small icon with the arrow at the extreme upper left and select "Show Menu Bar":
    Apple for some inexplicable reason elected to hide the menus by default in the Windows version of iTunes 11.
    I doubt that this will address a download problem, though. You'll need to provide more details about that; what device you're attempting the download on, the exact error message, and other such pertinent information.
    Regards.

  • Can't find "articles panel" in CS5.7.0.4

    Trying to follow Mike Rankin's video on using the articles panel.
    Except I can't find it, now I've upgraded to CS5 7.0.4, not under window, nowhere.
    Did this go out with the 5.5 version?
    Trying to export a content list based on links.
    Any help greatly appreciated!

    Ach. Well, if there is any stupidity involved, it certainly isn't yours. It's an insanely easy fact to overlook.  In fact, I spent a minute goggling at your post title "CS5.7.0.4" and wondering if I'd missed something... "there's a new 5.x dot release, already? But they just released the last one a few months ago...?" before I realized what was going on.

  • HT1420 Feeling really stupid with my new MAC - I can't find the "Store" menu in iTunes as referenced in the support article on how to authorize a computer.  Where is that menu option?  I've looked all over the page, in my account, etc.

    Feeling really stupid with my new MAC - I can't find the "Store" menu in iTunes as referenced in the support article on how to authorize a computer.  Where is that menu option?  I've looked all over the page, in my account, etc.

    Authorization and Deauthorization
    Macs:  iTunes Store- About authorization and deauthorization.
    Windows: How to Authorize or Deauthorize iTunes | PCWorld.
    In iTunes you use the Authorize This Computer or De-authorize This Computer option under the Store menu in iTunes' menubar. For Windows use the ALT-S keys to access it. Or turn on Windows 7 and 8 iTunes menus: iTunes- Turning on iTunes menus in Windows 8 and 7.
    More On De-authorizing Computers (contributed by user John Galt)
    You can de-authorize individual computers, but only by using those computers. The only other option is to "de-authorize all" from your iTunes account.
      1. Open iTunes on a computer
      2. From the Store menu, select "View my Account..."
      3. Sign in with your Apple ID and password.
      4. Under "Computer Authorizations" select "De-authorize All".
      5. Authorize each computer you still have, as you may require.
    You may only do this once per year.
    After you "de-authorize all" your authorized computers, re-authorize each one as required.
    If you have de-authorized all computers and need to do it again, but your year has not elapsed, then contact: Apple - Support - iTunes - Contact Us.

  • HT4946 Does iCloud or iTunes back up your contacts?  I can't find any info in the articles that specifically backs up my contacts.

    Does iCloud or iTunes back up your contacts?  I can't find any info in the articles that specifically backs up my contacts.

    It looks like the developer's of that app, or Apple, have got the wrong search name for it in the store - you could try contacting the developer and pointing it out to them so that they can get it corrected. Currently it looks like you can only find the app either by using the link (as you've included in your post), or by searching for the developer's name (Page Foundry Inc) in the store.
    For searching the store, when you search for something then the first result(s) should be those whose title matches what you searched for - so if you search for 'ebook reader' then as there is an app with that exact name it will be first in the results, other apps will then be listed after it.

  • Can't find article about blog creation

    hi,
    i can't find article about creating a blog :( i don't
    remember a title and author but i know its about configuring mySQL
    connections, managing articles, admin panel etc. its in six parts.
    the title was something like "creating a blog with PHP, mySQL bla
    bla bla..."
    i read it in March.
    help me to find it ... :/:(

    thanks i already find the second site and its it :p this is
    old version for DW MX but its better than nothing :)
    quote:
    Originally posted by:
    Newsgroup User
    Just as Nancy said, Google it's your friend try in Google
    Groups
    Macromedia.dreamweaver, anyway I also found this which looks
    like what
    you are searching.
    http://groups.google.de/group/macromedia.dreamweaver/browse_thread/thread/299fd8f3e9bb7ac5 /af48ca8afe317096?lnk=gst&q=blog+with+PHP%2C+mySQL#
    or this tutorial:
    http://www.interaktonline.com/Products/Online-HTML-Editor/KTML-for-Dreamweaver/Documentati on/Articles/Building++a+Blog+%231%3A+Creating+the+Basic+Application-Introduction.html?id_a rt=16&id_asc=144
    Hope this help!
    nmc_zmc escribió:
    > yes i know but i need article from adobe :P a couple
    months ago it was on main site PHP Topic Center but now its gone :/
    i was try to find it in article archive but no result

  • HT2513 I have an iCal calendar downloaded and I can't find it in any calendar listings. I've read the above article, but I can't even find my iCal window (don't know where my applications folder or dock is and a search of the iPhone turns up nothing)...

    I can't find my iCal window to try to get rid of this iCal calendar I downloaded, but want to delete. I can't seem to find the applications folder or dock that I've heard the iCal window is in. A search of the iPhone won't turn either up. Can someone please help?

    have you tried rebooting your computer?

  • I know the article is here; can't find it. Upgraded to new 15.0.1 of FF on Acer laptop OS Vista. I go anywhere it wants me to upgrade to new.

    I upgraded to new version of FF on my Acer laptop with OS Vista. When I go to upgrade add-ons etc it tells me I'm using the older version 3.0 and that I need to upgrade to use that add-on. I had this problem on my desktop and I found an article that advised me how to repair that issue. Now, I cannot find the article. I have been searching for over 3 hours. Any suggestions?

    http://kb.mozillazine.org/Resetting_your_useragent_string_to_its_compiled-in_default

  • Where can I find downloads for Mac OS 7-9 (out of curiosity)

    I briefly remember that apple offered Operating systems older than Mac OS X for download but I still can't find them. If you knows were to find Mac OS 7-9 please tell me at your earliest convenience.

    Hi, glider -
    Can you update Mac OS 7/8 straight to Mac OS 9?
    Yes, on those machines rated by Apple for OS 9. You will need to acquire a retail OS 9 Install CD in order to do that - there are no download updates to take any version of OS 7 to any version of OS 8, nor any version of OS 8 to any version of OS 9. Each of those major-version jumps can be made only by using a retail OS Install CD; however, intermediate versions are not needed.
    The best way to install a major-version jump is via a Clean Install. Note that a Clean Install (in Mac terminology) will not remove anything; instead, it installs a brand new System Folder, renames the old one to Previous System Folder, installs a new set of utility apps, and little else.
    Article #58176 - Mac OS 8, Mac OS 9: Performing a Clean Installation
    As far as suitability of OS 9 for an older machine, this Apple KBase article lists what OS versions (amongst the OS 8 and OS 9 families) are supported by Apple for which machines -
    Article #25114 - Mac OS 8, 9: Compatibility With Macs

  • Fire Fox sent not all the data in text form. Reached only piece of information. Where can I find the cache of sent text?

    Fire Fox sent not all the data in text form. Reached only piece of information. Where can I find the cache sent the text?
    For example, I posted an article on a news site, but found that only a small part of my article was posted.

    I'm not sure whether Firefox saved that information. There is a chance that it is in the session history file, especially if you haven't closed that tab yet. To check that:
    Open your currently active Firefox settings folder (AKA your Firefox profile folder) using
    Help > Troubleshooting Information > "Show Folder" button
    Find all files starting with the name sessionstore and copy them to a safe working location (e.g., your documents folder). In order to read a .js file, it is useful to rename it to a .txt file. Or you could drag it to Wordpad or your favorite word processing software.
    The script will look somewhat like gibberish, but if you search for a word in your article that doesn't normally appear in web pages, you may be able to find your data.
    Any luck?
    For the future, you might want to consider this add-on, although I don't know how long it saves data after you submit a form: [https://addons.mozilla.org/en-US/firefox/addon/lazarus-form-recovery/].

  • The "always allow" button is grayed out in settings regarding cookies, and I can not find where to change the setting.  (Restrictions are not on.)

    The "always allow" button is grayed out in settings regarding cookies, and I can not find where to change the setting.  (Restrictions are not on.)  Do you know where I go to change the setting to allow me to "always allow" cookies?

    Hi lisaarnett111,
    If you are having issues turning on Always Allow for cookies in Safari on your iPad, you may want to check to make sure that you don't have Private Browsing enabled, as noted in the following article:
    Turn Private Browsing on or off on your iPhone, iPad, or iPod touch - Apple Support
    Regards,
    - Brenden

  • Can not find the Automation Folder.... neither its Key Command...HELP

    I would be grateful to anyone who could find a solution to the following issue:
    I have read in Logic's 7.2.3 help reference about track automation folder. The sort of arrange window that seems to lurk behind the main arrange page and the place where you can treat the automation data as proper region material. I have tried everything, .. there does not seem to be any key command of the sort, more over I can not find any other way that could give me access to such an editor like the Automation Folder.
    Thank you for reading this.
    Nik

    • 1 • If you choose 'New Track' from the Menu, or use Control-Click-&-hold, you can select from the various options.
    • 2 • No, you don't need to do anything — it's entirely voluntary… I feel guilty for even mentioning it… I just thought that since you seem to be genuinely grateful for the help you have been getting, you had probably not read the article fully. I see that you have just had a useful reply from John Alcock, so now's your chance!

Maybe you are looking for