Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: pho01
  • Order by date
  1. pho01

    Excel string extraction

    Cool! Thanks!
  2. pho01

    Excel string extraction

    One column of my spreadsheet, I have this data extracted from a database in this format: Column C1: ["Name","Street Address","City, State Zipcode"] I want to extract Street Address, City, State Zipcode into a different column, N1. How do I do that? Thanks!
  3. pho01

    Sharepoint: How to enable a field when a check box is selected on new item form?

    thank you ehaze, I customize the forms in Infopath, add rules, etc... everything is working in the preview of Infopath, but when i published the form to Sharepoint 2010, the rules are not working. Click customize form again to check it in Infopath, the rules are still there...and working in...
  4. pho01

    Sharepoint: How to enable a field when a check box is selected on new item form?

    In Sharepoint, I need modify a new item form of a list to make a field visible/invisible when a check box is selected: For example: There is a checkbox field called "Is XYZ affected?" When a user selects this field, it will make a hidden field visible "Impact details:" If "Is XYZ affected?"...
  5. pho01

    Excel average - calculate average up-to-date, exclude non value fields

    I have data for the whole fiscal year, for example: Nov Dec Jan Feb Mar Apr... 12 Dec, Jan, Feb, Mar and Apr columns have none data, how do i use one formula to calculate the average up to date. For example, average would be 12 for the data above, not 12/12 (whole year) = 1...
  6. pho01

    Excel - Export cells into .txt file

    Thanks ClulessChris. It worked
  7. pho01

    Excel - Export cells into .txt file

    I have a spreadsheet with thousand of rows. I combine values of all columns of each row into one column K. Now I want to export each row of column K into a text file. For example: Sheet1.Cells(1,"K").value => C:\temp\1.txt Sheet1.Cells(2,"K").value => C:\temp\2.txt Sheet1.Cells(3,"K").value =>...
  8. pho01

    Application-defined or object-defined error

    On my Excel macro, I had: Set r1 = Sheet1.Range(Cells(2, 1), Cells(1000, 3)) Step into the code, it returns error Run-time error '1004': Application-defined or object-defined error Any idea why it is complaining that? FYI: This is regarding to testing the script on the posting...
  9. pho01

    Excel - HLOOKUP on multiple rows. HOW?

    Thank you both for your response. GlennUK response worked great!
  10. pho01

    Excel - HLOOKUP on multiple rows. HOW?

    I have a spreadsheet like below. For each month, it has 3 columns, EMEA, NA, and AP. Under those columns, they have several rows as well, like Core Planned, Core Unplanned, Non-core Planned, Non-core Unplanned. We have a whole year data, and i want to create a section that looks up the data...
  11. pho01

    Detect non ascii character

    I know, just don't know what the pattern should be for non-ascii? or non english characters.... there're lots of non english characters out there, can't capture them all...
  12. pho01

    Detect non ascii character

    How do I replace any non ascii characters with a question mark? (?) We have xml interface to submit incidents in, and it doesn't accept any non ascii characters. I want to replace all non ascii chars with a (?) before submitting? Anyone knows the search pattern for non ascii char? or Perl...
  13. pho01

    How to compare dates?

    sorry, it's business objects. thanks for tips
  14. pho01

    Can Businessobject link data from one table to a different table?

    Can Businessobject link data from one table to a different table? just like in Excel? =Sheet2!B9 =B1 etc... Thanks!
  15. pho01

    How to compare dates?

    What is the right format to compare date in BusinessObject, I tried to create a varable, similar to: =If([Currently Open].[Incident Closed Date]>"04/30/2008";"May";"") and =If([Currently Open].[Incident Closed Date >04/30/2008;"May";"") Both failed: The expression/sub-expression at position...
  16. pho01

    Windows command to do 'right click and install'

    It's an .inf file to install, how can i use msiexec.exe to install it?
  17. pho01

    Windows command to do 'right click and install'

    Does anybody know a way in Windows to execute this task by using a windows command: right-click on a file and select install. I'm trying to create a bat script to install this driver automatically to multiple machines, if there's a way to perform the install by using a windows command, it...
  18. pho01

    Passing arrayname based on form value selected

    Very cool! Thanks!
  19. pho01

    Passing arrayname based on form value selected

    From the codes below, I'm trying to pass the arrayname to the function: if "value1" is selected, then arrvalue1cfgn and arrvalue1cfgv is passed through to the selectChange function: \"arr\" + this.value + \"cfgn\" = arrvalue1cfgn \"arr\" + this.value + \"cfgv\" = arrvalue1cfgv However, this...
  20. pho01

    How to get CPU usage?

    PercentProcessorTime of WMI object can get a CPU usage of a process, however, I need to get the CPU usage of a machine (all processes), how do I alternate the codes below to perform just that? strComputer = "." Set objWMIService = GetObject("winmgmts:" _ &...

Part and Inventory Search

Back
Top