Graphing Time Data

I have a report that pulls data from a phone system database.  Each record has the amount of time spent talking, waiting, holding and ringing for each person as numeric fields showing the total number of seconds for a block of calls.  I've been able to create the report and write formulas that convert the seconds for each field into a time field.  But of course it converts it to a specific date which is not what I really want.  If they run the report for a large time period like a month, then there will likely be more than 24 hours in the hour position which the function trucates to a single day.
As a work-around I've been able to use formulas to calculate the number of hours/minutes/seconds and then create more formulas to calculate the summary and grand totals for each person.  Not the best solution, but it works.  My problem is that now they would like to add a graph to the report showing the average total time spent on the phone for each person.
Of course I can't graph my calculated time since the formulas result in a String value.  And it doesn't seem to want to let me sum a time field so I can graph a true time value either.  I thought maybe I could convert my finished average time per person into a time value at the group level since that wouldn't be over 24 hours, but that didn't work either.
Was hoping someone would have some experience in working with time data.  Any suggestions would be helpful.

Hi Jay,
Thanks for the response, but I don't think I explained my problem clearly.  Here's how my data is stored (sorry about the lack of columns, so I separated them with "|"):
Phone Rep ||   Day   ||   Talk Time ||   Hold Time  ||  Total Time
John Doe   ||    1-1-09 ||  5,000 sec||   1,200 sec   ||  6,200 sec
John Doe   ||    1-2-09 ||  6,000 sec ||  2,000 sec  ||   8,000 sec
Total          ||             11,000 sec ||  3,200 sec  ||  14,200 sec
The read out on the report should read:
Phone Rep   ||   Total Talk Time  ||   Total Hold Time  ||  Grand Total Time
John Doe      ||     3:03:20       ||          0:53:20       ||        3:56:40
Avg/day        ||     1:31:40         ||        0:26:40          ||     1:58:20
When I convert the time in seconds to a time variable with TimeSerial(hh,mm,ss) it gives me the time in the correct format, but it's listed as simply a time of day.  If the report runs for many days, then the time values could require the hours to go over 24 such as 155:35:26 to reflect a month's worth of calls.  My formulas that calculate the read out as shown above can do this with no problem.  The problem occurs when I try to graph the average at the bottom.  I can't seem to find a way to chart the average time per day.
I've tried summing the total time in a group and then find a way to format the y axis to show the time format.  I've tried creating a formula to convert the individual record into a time format and then summing that for the graph, but it doesn't give me the option to sum, only to count or other non-numeric options.  I've also tried creating a formula to convert the finished average calculation into a field that can be graphed by itself, but when I insert the chart it doesn't list my formula in the available fields to graph.
I would even be willing to create the chart in a sub report that somehow pulls in just the total average and then tries to graph that, or use the Microsoft OLE chart object to try and push the data to that and insert the finished chart, but having never done either of these, I was hoping for an easier solution.
Thanks
Edited by: Ken Skinner on Jan 25, 2009 8:55 PM
Edited by: Ken Skinner on Jan 25, 2009 8:59 PM

Similar Messages

  • Time / Date format in series section of a graph

    Hello,
    I am trying to use some data imported from excel in a graph, but when I set the series of the graph to a field that contains time data (hh:mm), it does not convert it properly.
    Is there a way to represent this time data on the y axis of the graph correctly.
    Ronan

    Hello Ayuba,
    There is something the team might want to check out. Time formatted excel imports are not displaying well.
    To simulate the issue
    create small table in Excel with column formatted as "time"
    Import and see the displayed value in the data source view. It's far from correct displayed time
    The only way you can do something about it is to set the drop down of the column to text and use Timevalue and text to transform to correct time.
    If you just display time in excel as "general" same issue occurs with the import.
    Regards
    StonyArc
    http://www.stonyarc.com http://www.xboxlivenation.com

  • Graphing loses Date/Time stamp.

    I use Field Point to collect pressure and temperature data. The each channel is calibrated for span and offset then stored and graphed. When I combine the array of pressures and send it to a date/time graph the date ends up being a random date. I find it absurd that NI has not fixed this simple problem. I have spent months working with them and all they have done is add pages of code and 60+ shift registers to fix such a simple problem.
    Is there a smart programmer out that that can do this easily. Of the 5-6 NI programmers I have worked with. None of them have been able to give me a simple fix to this problem
    Thanks for any advice.

    Can you post any of the code?
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • Display real time data on a plot in a sub VI and main VI

    I am building a program to measure and plot real time data. Program has several steps so I build few Sub VIs to make it simple. My problem is I am plotting real time data in my SUB VI(it works fine), but in my main program when I try to get the same plot its not real time data plot. Plots appear at the end of the program.  All tips and help would be greatly appreciated. Thanks
    I have attached my main VI and Sub VI
    Solved!
    Go to Solution.
    Attachments:
    main VI.jpg ‏116 KB
    Sub VI.jpg ‏242 KB

    LabVIEW program is based on DATA FLOW, now, until the subVI will finish execution (while loop will be stopped), the execution in Main VI will not proceed any further.
    If you can pass the reference of 'XY Graph' inside the subVI, you'll be able to update the plot (placed on MAIN VI) from within subVI.
    Find attached example for your reference.
    I am not allergic to Kudos, in fact I love Kudos.
     Make your LabVIEW experience more CONVENIENT.
    Attachments:
    Example [LV 90].zip ‏26 KB

  • What is the best way to graph CAN data?

    Hi All,
    Even after years of trying, I am still really lousy at using the LabVIEW graphing functions, so I hope you will be patient with me.
    I am currently writing code to monitor a CAN bus.  I have messages with five different arbitration IDs coming in at irregular time intervals.  Generally, there is between between 5ms and 100ms between packet arrival times.  My first currently captures the raw CAN data and parses it according to the format requirements for each arbitration ID and shows the corresponding values from the parsed data.   It also saves the raw data into a txt file.  Each entry saves a time stamp, Arb ID, message length and 8 CAN bytes, which is the length of each CAN packet.
    I have another program which takes the raw data from the original txt file and resaves it as formatted data, broken out into parsed values.  I use this two-step process to make my CAN capture program run faster.
    I have two graphing needs right now:
    1.  Graphing the ruasi-real-time values of the parsed CAN data as they are acquired in my CAN capture program.  This needs to happen in as little time as possible, giving me usable graphs or charts without bogging down the program.  If graphing the data takes up too much CPU time, I could graph data samples once every XXXms, instead of graphing everything that comes in.  If graphing the data proves too CPU intensive, I might just give up on this real time graphing.
    2.  Graphing the entire parsed data set in my second, post-capture program.  Speed is not as important in this program because I am not capturing real time data while it is running.  This graph needs to include each data point vs. its associated timestamp.
    Any recommendations on which graphing functions to use in these programs would be greatly appreciated.
    Thanks!

    I'm not sure what you mean by "graphing functions."  I have code running now that receives a CAN message every 1ms.  Every 100ms, all the data received in that period is added to a chart.  I'm using a less-expensive USB CAN card (so no on-board filtering) and my code has no problem filtering by arb id in software.  I'm doing this by grabbing all received messages from the buffer every 10ms and, in a for loop, checking the arbitration ID of each packet.  If the ID matches the one I want to graph, I convert the CAN packet to 4 16-bit values and put them in a queue.  In a separate loop, every 100ms I flush the queue and write the contents to the chart.  Here's the relevant bit of my code.  Does this help?

  • Wavefrom graph time from .csv

    Hello everyone
    I use "read from spreadsheet file" to read a two column .csv file in a waveform graph.
    Time is defined in the first column and the Data is defined in the second column.
    The problem occurs in the x-axis of the graph (Time-axis). It doesn't match with the numbers from the .csv as shown on the picture below, but the Y-axis has correct values.
    The VI is uploadet
    Best regards
    Oesen
    Solved!
    Go to Solution.
    Attachments:
    2-Column CSV.vi ‏13 KB

    Works fine here once I configure it to use a comma as decimal delimiter (using format=" %,;%.3f " on read from spreadsheet file).
    You seem to use a foreign version so that should not be necessary, depending on the language setting of your computer but it seems to be the problem.
    As a first step, you should display the entire 2D array in an array indicator to ensure that your number don't get truncated somehow. If they get truncated, dt will be set as zero and thus ignored and taken as 1.
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    SetDt.png ‏23 KB

  • What is Averaging Time & Data Reduction Factor in Frequency-Weighted Acceleration?

    I have to analyse the Ride Comfort Data of one vehicle (as per ISO2631-1). It has Acceleration levels of driver seat in X, Y, Z directions.
    I need to plot Frequnecy Weighting in dB vs Frequency in Hz. Data is recorded at 500 Hz for 9.95 secs.
    How much Averaging time & Data Reduction Factor should i take and how to convert them in as above said graph.

    In ISO2631-1 it says that while analysing the data you should take weighing factors for seating condition. For driver seat it is 1 it is also mentioned in Frequency Weighted Averaging in Diadem as Wk & Wd etc in signal analysis.
    Output should come as Frequency weighted RMS of individual X, Y , Z and combined RMS of X, Y , Z. for that i need to know the "Averaging Time Constant Required" & Data Reduction Factor. As changing any of these will change the results.
    I need to have one final RMS value of X, Y, Z representing the ride comfort of that vehicle & If possible combined RMS too.
    And how to change that value to dB. I know how to do it manually by taking a reference value and taking log with base 10 by dividing by reference value.

  • Reading and saving real time data

    Hi,
    I would like to read and save real time data using DAQ card 6004 with my PDA device. There is no problem with reading real time data, I can see it on the PDA's screen successfully. But, when I'm trying to save this real time data, I have the following problem:
    -It continuosly asks for file name.
    -It only saves the data instaneously,i.e. it only saves the data at the moment.
    I'm stuck with this problem, could you please help me?  I attached my vi doc.
    By the way, I'm using Labview PDA 8.5 version. 
    Attachments:
    Acq&Graph&Save Voltage-Int Clk.vi ‏32 KB

    oozdemir,
    >> -It continuosly asks for file name.
    You are prompting the user for a file name each time through the loop.  Do this before you enter the loop and pass that file ref in.
    >> -It only saves the data instaneously,i.e. it only saves the data at the moment.
    By this, I am going to assume you want to append to the file as you go.  Two problems, 1.  you are saving an array to the file and additional info about the array structure is being saved.  You would essentially be creating a binary file filled with array "records" (for lack of a better term) appended one after another.  2.  If you want to append to the file, you will need to use the "Set File Position.vi" to locate the file pointer to the end of the file.
    This task looks like it runs once per second until the stop button is pressed.  You could build an array of all acquired data in the loop and then write it when the loop exits.  Just a thought.  This app could create a lot of data though.
    -cb

  • Windows server 2008 R2 Standard edition time server problem: The computer did not resync because no time data was available.

    Hello,
    I'm trying to get my 2008 R2 server (physical server) to synch with an external time server. I've read other threads on the topic but have not found a solution. I'm sure i'm missing something.
    First the step leading to the error:
    w32tm /resync /rediscover
    Sending resync command to local computer
    The computer did not resync because no time data was available.
    Following is the history: 
    Here are the steps
    C:\>netdom /query fsmo
    Schema master               DC-01.coastal.local
    Domain naming master        DC-01.coastal.local
    PDC                         DC-01.coastal.local
    RID pool manager            DC-01.coastal.local
    Infrastructure master       DC-01.coastal.local
    The command completed successfully.
    next: 
    w32tm /config /manualpeerlist:time.nist.gov,0x1 /syncfromflags:manual /reliable:yes /update
    The command completed successfully.
    next:
    net stop w32time && net start w32time
    The Windows Time service is stopping.
    The Windows Time service was stopped successfully.
    The Windows Time service is starting.
    The Windows Time service was started successfully.
    Next:
    w32tm /resync /rediscover
    Sending resync command to local computer
    The computer did not resync because no time data was available.
    Next:
    Did a restart of the server and repeated:
    w32tm /resync /rediscover
    Sending resync command to local computer
    The computer did not resync because no time data was available.
    Next:
    Ran the following:
    w32tm /query /configuration
    C:\>w32tm /query /configuration
    [Configuration]
    EventLogFlags: 2 (Policy)
    AnnounceFlags: 10 (Policy)
    TimeJumpAuditOffset: 28800 (Local)
    MinPollInterval: 6 (Policy)
    MaxPollInterval: 10 (Policy)
    MaxNegPhaseCorrection: 172800 (Policy)
    MaxPosPhaseCorrection: 172800 (Policy)
    MaxAllowedPhaseOffset: 300 (Policy)
    FrequencyCorrectRate: 4 (Policy)
    PollAdjustFactor: 5 (Policy)
    LargePhaseOffset: 50000000 (Policy)
    SpikeWatchPeriod: 900 (Policy)
    LocalClockDispersion: 10 (Policy)
    HoldPeriod: 5 (Policy)
    PhaseCorrectRate: 1 (Policy)
    UpdateInterval: 100 (Policy)
    [TimeProviders]
    NtpClient (Local)
    DllName: C:\Windows\system32\w32time.dll (Local)
    Enabled: 1 (Local)
    InputProvider: 1 (Local)
    CrossSiteSyncFlags: 2 (Policy)
    AllowNonstandardModeCombinations: 1 (Local)
    ResolvePeerBackoffMinutes: 15 (Policy)
    ResolvePeerBackoffMaxTimes: 7 (Policy)
    CompatibilityFlags: 2147483648 (Local)
    EventLogFlags: 0 (Policy)
    LargeSampleSkew: 3 (Local)
    SpecialPollInterval: 3600 (Policy)
    Type: NT5DS (Policy)
    NtpServer (Local)
    DllName: C:\Windows\system32\w32time.dll (Local)
    Enabled: 1 (Local)
    InputProvider: 0 (Local)
    AllowNonstandardModeCombinations: 1 (Local)
    VMICTimeProvider (Local)
    DllName: C:\Windows\System32\vmictimeprovider.dll (Local)
    Enabled: 1 (Local)
    InputProvider: 1 (Local)
    Any feedback/guidance appreciated!!

    Hi,
    You may need to update command w32tm /config /syncfromflags:domhier /update, to change the IntranetServer w32time type to nt5ds (this sets the service to pull from the AD).
    For more detailed information, please refer to the thread below:
    The computer did not resync because no time data was available (w32tm)
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/127e7fe7-6fff-469d-8536-8da1c9825cb0/the-computer-did-not-resync-because-no-time-data-was-available-w32tm
    You could refer to the article below to configure time in Active Directory:
    “It’s Simple!” – Time Configuration in Active Directory
    http://blogs.technet.com/b/nepapfe/archive/2013/03/01/it-s-simple-time-configuration-in-active-directory.aspx
    Regards,
    Mandy
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • HT4946 I need to print & back-up a series of abusive/threatening SMS (on iphone 5c) for my solicitor. Is there a way to do this which will show the time, date & sender info? How can I preserve (full) SMS data as evidence for future court proceedings?

    Does anyone know how to access sms text messages from iphone 5c backup from icloud or itunes? Apparently SMS can be restored so data I need must be stored in backup. I need to print a series of abusive/threatening SMS messages received on my iphone 5c from one sender. I need the time, date & whatever data is stored about source/sender of messages, as well as content. How can I access this data to create a chronological record of the abusive SMS messages and can I preserve the iphone's message log specifically-- so I can access records of these texts without having to restore a back-up? I need to do this to provide evidence for my solicitor and preserve that evidence for future court proceedings, thank you.

    http://www.wideanglesoftware.com/touchcopy/index.php?gclid=CMr1..
    http://www.ecamm.com/mac/phoneview/

  • Three Graphs and Data need to display in a single screen

    Hi Gurus,
    I have a requirment that customer wants to see three graphs and data in a single screen.
    The data will be avilable in a single query, how can i display.  I gone through with many SDN blogs, but i did not get the solution.
    Requirment is:
    First graph         Business Unit informaiton, there are around 7 BUs, under each BU, they have 3-7 Industry groups.
    Second Graph:  Industry Group, under each industry group there are no of customers, i want to display top ten customers.
    Third Graph:  Top Ten Customers.

    Hi Karanam,
    Assuming you are using WAD;
    First graph Business Unit information, there are around 7 BUs, under each BU, they have 3-7 Industry groups.
    -You would need to have a Query that displays the BUs with their Industry Group count i.e BU in the Rows with Industry Count as the KF - I assume you want to show count here
    -Build a Data Provider DP1 on the Query
    -Drag a Chart webitem onto the web template & assign DP1 to it - use a Column/Bar Chart to display the Category 'BU' & Series 'Industry Count'
    Second Graph: Industry Group, under each industry group there are no of customers, i want to display top ten customers.
    -You need to have a Query that displays the Industry Groups & top 10 Customers within each i.e.  - create a Query Condition to achieve top 10 Customers based on some criteria - I assume Sales Revenue or likewise
    -Build a Data Provider DP2 on the Query
    -Drag a Chart webitem onto the web template & assign DP2 to it - use a Column/Bar Chart to display the Categories 'Industry Group', 'Customer' & Series 'Sales Revenue' or likewise
    Third Graph: Top Ten Customers.
    -You need to have a Query that displays the top 10 Customers i.e.  - create a Query Condition to achieve top 10 Customers based on some criteria - I assume Sales Revenue or likewise
    -Build a Data Provider DP3 on the Query
    -Drag a Chart webitem onto the web template & assign DP3 to it - use a Column/Bar Chart to display the Category 'Customer' & Series 'Sales Revenue' or likewise
    --Priya
    Edited by: Priya Jacob on May 27, 2010 7:41 AM

  • How do I set a custom time & date format in the top bar?

    Hello guys,
    Very embarassing question, because I've had Apple's for all of my life (starting with the original Apple Macintosh) but I still haven't figured out one thing
    How do I set a custom time & date format in the top bar?
    When I go to System Preferences > Language & Text > Formats I can set different formats. I have no idea where you will see these, but I know that it's not the top bar where the time and date is being displayed. Because no matter what I enter, the format in the top bar will stay the same. I can only choose things like 24-Hour clock or not, blinking dots and so on in the Time & Date settings from the System Preferences.
    Can anyone here point me in the right direction? I see you can even choose to display the week of the year - I'd love to do that!
    All help appreciated!
    Greetings

    Language & Text system preferences, Formats tab, customize dates.
    There are also many third party menu item utilities that can.  Search Macupdate.com for some.
    One search yielded iClock Pro.  Although I never used it I would think it allows customization.  The link I gave you is to the Macupdate download page for that app.  On that same page is a Similar Software section which has other apps that can do the same thing. 
    One listed is iStat Menus.  The primary use for iStat Menus is not for displaying date/time but it does do that.  And I know it can do what you want because I use iStat Menus to track temperature sensors n my machine and, like you, I want to customize the menu time/date.  So I use it instead of the apple clock.  It does have the customization features I think you are looking for.

  • How to count occurences of a certain string in incoming real-time data? Also displaying RTC data. Current VI included

    I use LabView student Express 7 on a Windows XP system.
    Time-frame: we are doing final integrations for our balloon experiment today. We just got told that the press wants to view real-time data, which we haven't programmed for. I need help to get a working VI at the latest by 25.02.2004 before 0800(morning) (GMT+1).
    Note on license
    It is a student balloon flight, and the data will not be used in scientific work, so the I am not breaking any license agreements (I hope).
    Problem synopsis:
    The balloon continually transmits data at 9600baud. The data is a semi-repeating header followed by a constant lenght data-package arranged like this:
    BEXUS[h][m][s]BEXUS[h][m][s]
    [Raw binary data, 7channels*8sub-channels*8bits]
    What the groundstation is doing right now:
    Take all incomming data and save (append) the data to a file without any data-handling. (We figured we would go post-processing).
    What I need to change in less than 24 hours:
    - Add a "package" counter
    - Add a display of the clock data (RTC)
    How I planned to implement the changes:
    -RTC display:
    The RTC data is in BCD format, since that means that if you look at the data as hex numbers, you get the hours and minutes and seconds out in "clear text". That is 12 hours is 0x12hex. I figured that I can do a match pattern BEXUS and pass the "after substring" to another match pattern BEXUS from which I feed the "before substring" to a type-cast VI (casting string to u8) and displaying that, which should give me a display of "123000" for the time 12:30:00... I couldn't get it to work at all when I tried out the supplied "beta" vi.
    - Package counter:
    Counting how many BEXUS that gets detected and dividing by 2. I don't know how to do this. I've looked on the forum (a good thread on the problem: "how do I count the number of *'s in a string") but these use either loops or arrays... and I'm not sure how this works when I'm getting the data in at realtime. I cant make an array and then count it, since then the array would grow fast and possibly interfere with saving of the data??? Saving the data is critical.. without that file we cant do post-processing.
    Since my time is so limited (I'm not even supposed to do the groundstation software but they called on me in the last minute because no-one else had time/wanted too/could do it) I hope that you could make an exception and provide me with working VI's (based on the one I have attached) so that I can show something to the press! (Free comercial for NI!! Since the student version shows the National Instruments water-mark on all VI's!!! Possible TV time!!)
    Thanks!
    PS: even if you are to late (after 25) post anyway!
    Why:
    -I can learn from it
    -the launch might be delayed due to weather conditions
    -others might find it amusing!
    Thanks again!
    Attachments:
    BexusII_groundstation.vi ‏46 KB

    I have a valid example data file attached to this thread.
    If you open BEXTEST.bin in a hex-editor of your choice, you'll see the BEXUS as 42 45 58 55 53 and then the time as 00 28 09 etc.
    I couldn't get Joe Guo's VI to work. It doesn't count packages correctly, and the time is not displayed correctly either.
    The file was saved using a straight save to file VI.
    The data is from actual launching area tests performed a few mintues ago. The time displayed is "On time" e.g. how long the gondola has been powered up.
    I have a spare T-junction, so I can hook into the balloon real-time data as we fly, in case anyone care to see if they can figure out why the latest version of Joe Guo's program is not displaying correctly.
    I will monitor this
    thread during and after flight to see if anyone can make it in time!
    Thanks for the great effort!!
    Attachments:
    bextest.bin ‏53 KB

  • Can I set up a Content Filter that is Time/Date stamp dependent?

    My company would like to add an additional disclaimer text during Holidays where the company is closed.  It will say something like: "In observance of the 'XYZ' holiday, our offices will be closing at 3:00 PM on Friday, December........ and will reopen at 8:30 AM Monday.......".
    I was wondering if there is a way to set up conditions in an Outgoing content filter to only include that text if the email is sent between certain dates.
    This would allow me to set up the filters prior to the holidays and not have to manage them manually.
    I tried to do it via Exchange Transport rule, but I can't find a time/date dependent condition for the rules in Exchange.
    Thanks,
    Rachel    

    Hi Rachel,
    there is no way to archive this directly in content filters, an indirect way would be to use a message filter that adds an additional header (i.e. X-mas: true) during a specific period. For that, message filters provide the 'date' rule, i.e
    HolidayHeader:
    if ((date > '12/20/2012 13:00:00') and
         (date < '12/28/2012 12:00:00'))
    insert-header('X-mas', 'TRUE');
    You'd then create an outbound content filter matching on this header and inserting the specific footer if the header exists. Or, of course, you could have that action in the message filter already, however in that case you need additional conditions to make sure the rule applies on outbound messages only.
    Hope that helps,
    Andreas

  • MRS (Multi Resource Scheduling) - Time Data

    Hi All,
    Is possible display in the planning board the time data confirmation from CATS?
    Is necessary to use some function to integrate this?
    Best Regards.
    Javier

    Hello Javier, this thread is already 2 Years old ... i have the same problem now. Have you solved this issue?
    Best regards, Thomas

Maybe you are looking for

  • To set color for barchart having datetime column

    Hi,    I have a datetime column in the XSD, I was trying to set colors for the barchart through,  chart expert --> colorhighlight  ,here in  colorhighlight when i click on new I am getting a dialogue box asking to enter datetime in M:D:YYYY H:MM:SS T

  • Profit Center in Process order

    Dear All, Can any one explain me how the profit center gets populated in process order assignment tab in COR3? 1. From where it is picking the profit center (Is it pick from material master)? 2. Any configuration required to get filled automatically?

  • Upgrading to Weblogic 9.2

    Hi I'm upgrading an 8.1 app to 9.2. I've managed to deploy it, but when I try to access a web service I have deployed there it returns a 401 error, because it's trying to do basic authentication. It worked fine under 8.1. I tried adding <enforce-vali

  • Attach a link to a workflow.

    Hi Guys , Do you have the necessary steps to attach a link to purchase order in a work item, my client needs  to see the documents before approve but he wants to see them from the business workplace I was thinking to put this below Objects and Attach

  • Styles Not Found

    I'm running Photoshop CS3 and XP. PS has stopped recognizing my styles. When I try to load a new style it goes to the proper folder, but displays nothing. When I move my cursor over the folder name, it says "folder is empty." It is not empty. Does an