Export values to listbox with the same format

Dears,
kindly i need some support please to solve this problem.
I have a listbox that retrieve a data as per auto filter based on 3 criteria, but these data isn't retrieved with the same format, i retrieve these data from tow different tables, both of them exported with the default format,
note: the table source is imported via "Existing connections" but the values format are processed at both of all, is this problem related to the data source or lixtbox options
i uploaded the whole workbook, you can call the userform from sheet that called "Interface", and fill the 1 & 2 combobox with any inputs, and the last combobox you have to choose "Dec", then hit "Daily" or "Monthly"
button
Private Sub Daily_Click()
Dim Source As Range, c As Range, i%, Aux As Worksheet
Dim fa As Range, nc%, ca, v As Range, A As Worksheet, s$
Me.ListBox1.ColumnCount = 11
ListBox1.Clear
Application.ScreenUpdating = True
Set A = ThisWorkbook.Sheets("Daily")
Set Aux = ThisWorkbook.Sheets("popup") ' auxiliary sheet
Set Source = A.Range("A1:CB1")
Set c = A.Range("a1").CurrentRegion
Source.AutoFilter Field:=1, Criteria1:=Month_list.Value
Source.AutoFilter Field:=4, Criteria1:=Leader_list.Value
Source.AutoFilter Field:=6, Criteria1:=User_list.Value
Set v = c.SpecialCells(xlCellTypeVisible) ' filtered range
Aux.Cells.ClearContents
v.Copy Aux.Range("a1")
Set fa = Aux.Range("a1").CurrentRegion
nc = fa.Columns.Count
ca = Array(3, 13, 14, 15, 16, 17, 21, 30, 31, 32, 33) ' columns you want
For i = LBound(ca) To UBound(ca)
fa.Columns(ca(i)).Copy Aux.Cells(1, nc + 3 + i) ' create final range
Next
Me.ListBox1.List = Aux.Cells(1, nc + 2 + i).CurrentRegion.Value
With Me.ListBox1
Me.ListBox1.BoundColumn = 1
Me.ListBox1.BorderStyle = fmBorderStyleSingle
Me.ListBox1.ColumnHeads = True
Me.ListBox1.BackColor = RGB(255, 255, 255)
Me.ListBox1.ColumnWidths = "70; 75; 57; 80; 90; 150; 60; 80; 80; 80; 80; 70"
Me.ListBox1.BorderStyle = 1
Me.ListBox1.MultiSelect = fmMultiSelectExtended
End With
End Sub
     the workbook
thanks a lot, 

Either you need to reformat the values in memory as required before populating to the ListBox, or if the cells are formatted the way you want you can read the cell's text values, though not in one go as an an array.
Based on a quick look of your code above try the following, but adapt if it's not quite right
Set fa = Aux.Range("a1").CurrentRegion
nc = fa.Columns.Count
ca = Array(3, 10, 14, 16, 20, 21, 22, 23, 24) ' columns you want
'' don't need this
' For i = LBound(ca) To UBound(ca)
' fa.Columns(ca(i)).Copy Aux.Cells(1, nc + 3 + i) ' create final range
' Next
Dim lastRow As Long, j As Long ' put these up top
' after copying to Aux, but no need to
lastRow = Aux.Range("a100000").End(xlUp).Row
ReDim arr(1 To lastRow, LBound(ca) To UBound(ca))
For i = LBound(ca) To UBound(ca)
For j = 1 To lastRow
arr(j, i) = Aux.Cells(j, ca(i)).Text
Next
Next
Me.ListBox1.List = arr

Similar Messages

  • How to export DV to H264 with the same quality as other apps.

    After some nightmare decision and many recomendations I've decided not to use imovie08 to edit my DV video. So I started using iMovieHD. But after my first project I was shocked. After asembling some clips and export to h264 (no effects, transitions or titles) the quality was far inferior to the same original DV file exported with mffpegx or Mpegstreamclip. You can download here two files to compare:
    http://cid-79fe52c9afb5b05d.skydrive.live.com/browse.aspx/Video%20TEst%20iMovieH D
    The name of the file refers to the application used to convert.
    I export using Quicktime->Expert settings->h264 (I have tried both mp4 or quicktime)
    Image size SD (768*576)
    Frame rate 25
    Bitrate 2000
    As you can see using MediaInfo the two files have very close especifications (I couldn't get the exact ones).
    Are I'm doing something wrong? Can I get the same quality I get with the other apps? or should I export to DV and then do the conversion with some other program?

    Thanks for the input.
    You point something interesting, but after further experimenting I get no improvements.
    Since there is no deinterlacing in mp4 export, and switch to QuickTime H264. There you get a option to deinterlace, but the result is a movie with near the same quality as the mp4 file. The only improvement is visible in the diagonal lines in the shirt.
    The worse thing I see in the video does not have to be with deinterlacing but with the objects being doubled like a picture of a fast moving object or perhaps like the shadow of a phanton. These does not improve at all with deinterlacing the video.

  • Dreamweaver with the same format as Notepad++

    I'm XHTML handcoder programmer and I'm working with
    Notepad++, I'm trying to migrate to Dreamweaver because it have a
    lot of great tools and auto-completion system. My big problem its
    that I want to have the same colors and format like Notepad++
    because are great and I can't change everything! I'm frustrated.
    For example I want all the ATTRIBUTES in RED and all the TAGS in
    BLUE but Dreamweaver use and UNIQUE color for: HTML FORM TAGS, and
    HTML ANCHOR TAGS, and HTML IMAGE TAGS! and It looks like crap. For
    example if you want a different Font for COMMENT TAGS you can't
    change that. Anyway, if you are a DW developer, take a look to the
    Notepad++ style editor. Have a great color style its very important
    if you are going to use this tool everyday! :)
    Thanks!

    Hi Murray,
    Please, enter to DW and access to the
    Edit Coloring Scheme for HTML in Preferences and Then:
    1) How Can I use a different font style to the HTML Comments?
    DW is using "Courier New" and I want a use a different Font. I
    can't change that.
    2) How Can I maintain the Red Color to the ATTRIBUTES and
    Blue Color to the TAGS in the Style color for the next list: HTML
    Anchor Tags, HTML Form Tags, HTML Image Tags and HTML Table Tags.
    I can't change colors like that:
    <img src="image" width="15" />
    <img Color: #0000FF (Red)
    src Color: #FF0000 (Blue)
    = Color: #000000 (Back)
    "image" Color: #8000FF (Fuchsia)
    width Color: #0000FF (Red)
    = Color: #000000 (Back)
    "15" Color: #8000FF (Fuchsia)
    /> Color: #000000 (Back)
    It Only permit me an Unique color for all the IMG related
    tags. Same thing for A, FORM and TABLE
    This is how I want the colors, it looks better to me that the
    colors of DW and I'm not the only one.
    http://notepad-plus.sourceforge.net/commun/screenshots/scrsh_lexerXML.gif
    http://notepad-plus.sourceforge.net/commun/screenshots/scrsh_lexerHTML.gif
    http://notepad-plus.sourceforge.net/commun/screenshots/scrsh_lexerSQL.gif
    Thanks!

  • Export to avi with the same quality. How ?!

    Hello,
    I'm using Adobe Premiere Pro CS5 to edit my video but i don't know how to export to avi file with the same quality...?!
    In the previous version Premiere Pro CS3 i can export the video into avi with the same quality using Windows Media Video 9 Codec but in Premiere Pro CS5 i don't know how to do it...!!
    Best Regards,
    Q8Xbox

    After you have downloaded and installed Lagarith and UT, reboot and just choose to Export to MS AVI, and then in the Compressor drop-down, choose the one that you want.
    Good luck,
    Hunt
    I am agree with you Bill but how can we import these codecs into adobe premiere pro.Because it expects only .epr extension for importing presets.Is there any other way then let me know.Thanks in advance

  • Export webi to excel with the exact same format

    Hello expert,
         I develped a webi report, but when I exported it into excel file, its format is defferent from WEBI report, such as text for legend with multple lines in webi presented in one line in excel,  there are a few descrepency.  please tell me how can I export webi to excel with the exact same format?
    Many Thanks,

    Hi,
    There are options for the "save as excel" step .   either a) for formatting ,   or b) for data
    these should help.
    The reason why there are 'undesirable'  rows (also, merged rows / columns) is because your report document has table outlines which have been positioned 'by eye'.
    When the rendering algorythm outputs it content,  it's looking at pixel-level , so the relative position of borders can get messed-up. It's mainly due to slightly sloppy formatting.
    Regards,
    H

  • Save the selected value from listbox with its respective tab control dropdown selcted values in another listbox

    Hi all,
    I am making a vi where I have to save the selected value from listbox with its respective tab control dropdown selcted values in another listbox.Whenever I select Item1 then the heading change and respective tab will open for that item.But Now I just want to save the selection and put it in another ListBox.SO that I can renmove or add according to my wish. Plz help me.
    Solved!
    Go to Solution.
    Attachments:
    my_vi.png ‏83 KB

    Hi, I successfully make the vi to insert itmes from listbox1 to listbox2.Whenever I select itmes 1 in listbox 1 it display same elected item in listbox2 , but it not appending the items in listbox2.Like If 1 is selected in listbox1 then 1 will display , next time after saving when I selct next item like 3 then in listbox 2, 1 is replaced by 3,it dont come in second row of listbox2.Hope I am able to explain.\
    Plz help me to resolve this.
    Attachments:
    listbox_update.vi ‏11 KB

  • Query parameters with the same name and different values

    According to HTTP, multiple query or post parameters with the
    same name and different values are permitted. They are transfered
    over the wire in the following format -
    name1=val1&name1=val2&name1=val3
    The problem is that I can't see anyway of assigning multiple
    parameters with the same name and different values to the request
    object of mx.rpc.http.HTTPService. I have tried using the
    flash.utils.Dictionary object as it does strict key comparison but
    that doesn't work too. I have tried setting an array of values to a
    property of the request object but that sends the request to the
    server in the following format -
    name1=val1,val2,val3
    The java servlet engines throw exceptions when they see this.
    Any help would be greatly appreciated.

    If you're not on 8.1.4 move there. 8.1.3 had limitations in the wsrp
    release.
    wrote:
    I have an html select box that contains several values, and multiple
    selection is enabled. When my code runs as a remote portlet, the
    following is showing up in the soap monitor when I select multiple
    values and submit the form:
    <urn:interactionParams>
    <urn:portletStateChange>cloneBeforeWrite</urn:portletStateChange>
    <urn:interactionState>_action=addEmployeesToGroup</urn:interactionState>
    <urn:formParameters
    name="P62005wlw-select_key:{actionForm.selectedEmployees}OldValue">
    <urn:value>true</urn:value>
    </urn:formParameters>
    <urn:formParameters
    name="P62005wlw-select_key:{actionForm.selectedEmployees}">
    <urn:value>beatest1</urn:value>
    </urn:formParameters>
    In this case, I selected beatest1 and beatest2, but only beatest1 comes
    through to the remote portlet. Is this a known bug, and, if so, is
    there a patch or workaround available?
    Thanks in advance,
    Andy

  • HT3130 trying to export a 4 minute video to desktop.  Only 1:08 seconds exports.  I've tried other clips and they all cut at 1:08.  Used different exports like Quicktime with the same results.

    trying to export a 4 minute video to desktop.  Only 1:08 seconds exports.  I've tried other clips and they all cut at 1:08.  Used different exports like Quicktime with the same results.

    Good to hear that you've had some success with the import.
    I tried 3 times to do it before I finally changed it to H.264, and it worked on the first try.  The quality of the compression was terrible with those settings compared to my standard settings, but I'm just glad it worked.
    Rather than Share>Export using QuickTime and then choosing your own settings for H.264, you may get a better result if you simply use the Share>Export Movie option. Alternatively, use the Share>Media Browser option (as I mentioned in my earlier post). You will be presented with a range of sizes to choose from. Depending on your target, it's usually best to select the highest size available, such as Large, HD 720p or HD 1080p. However, for producing a DVD it's best to not go beyond the HD 720p size, as the DVD will be downscaled during encoding to Standard Definition in the appropriate size for either PAL or NTSC.
    In my experience, both these options (Export Movie or Media Browser) produce a video file of excellent quality. The files will be in H.264 format and will have the file extension .mov or .m4v depending on the size of the export. I'm assuming that your camera records HD video in AVCHD format.
    These files work well with iDVD (or other DVD authoring programs). The export process for the presets is optimised by Apple to produce high quality video files at a reasonable file size. So, selecting a preset may give you a much better result. Choosing your own H.264 settings when using the "Export using QuickTime" method could be why "the compression was terrible". You may have selected a data (bit) rate that was too low. There is always a trade-off between quality and file size when compressing video.
    So, to summarise, try one of the Apple presets using either Share>Export Movie or Share>Media Browser.
    John

  • How do I get System.out.format to print out doubles with the same precision

    Using the System.out.format, how do I print out the value of a double such that it looks exactly like it does if it were print from a System.out.println.
    For example, take the following code:
    double d = 12.48564734342343;       
    System.out.format("d as format: %f\n", d);
    System.out.println("d as   sout: " + d);Running the code, I get:
    <font face="courier">
    d as format: 12.485647
    d as sout: 12.48564734342343
    </font>
    The precision of d has been lost.
    I could bump up the precision as follows:
    double d = 12.48564734342343;
    System.out.format("d as format: %.14f\n", d);
    System.out.println("d as   sout: " + d);That appears to work, I get:
    <font face="courier">
    d as format: 12.48564734342343
    d as sout: 12.48564734342343
    </font>
    However, that solution fails if d has a different precision, say 12.48. In that case I get:
    <font face="courier">
    d as format: 12.48000000000000
    d as sout: 12.48
    </font>
    So how do I get System.out.format to print out doubles with the same precision as System.out.println?
    Thanks..

    YoungWinston wrote:
    Schmoe wrote:
    Interesting, but this is not what I am looking for...Your original question was "how do I print out the value of a double such that it looks exactly like it does if it were print from a System.out.println", and you've been told how to do that (although the pattern given by sabre may be a bit excessive - you should only need 15 '#'s).The initial phrase from my question was "Using the System.out.format, how do I..".
    It's worth remembering that, unlike the Format hierarchy, 'format()' is NOT native to Java. It's a convenience implementation of the 'printf()' and 'sprintf()' methods provided in C, and first appeared in Java 1.5. Those methods were designed to produced fixed-format output; 'println()' was not.Perhaps it is the case that this can't be done.
    Furthermore, Double.toString(), which is what is used by println() does not produce the same format in all cases; format("%.14f\n", d) does. TrySystem.out.println(1.8236473845783d);
    System.out.println(1823647384.5783d);and you'll see what I mean.I am fine with that. It still displays all the precision.
    I am simply looking for a way to quickly print out multiple variables on a sysout while debugging. I want it as syntactically sweet as possible. System.out.println can be a pain when outputting multiple variables like the following:
    "System.out.println("a: " + a + "; b:" + b + "; c: " + c);"
    For some reason, my fingers always typo the plus key.
    I was hoping that System.out.format would be easier,along the lines of:
    "System.out.format("a: %f, b: %f, c: %f\n", a, b, c);"
    From a syntactical sweetness point of view, it is easier. However, the %f on doubles truncates the precision. I figured there must be a way to get the full precision.
    DecimalFormat is syntactically sour for this purpose, as you need to instantiate the DecimalFormat.
    fwiw I have enjoyed reading the suggestions in this thread...

  • I have created a PDF form with multiple drop downs, all with the same drop down values. When I select a value from 1 of the drop down fields, it replicates in all of the others - which I do not want. How can I fix this?

    I have created a PDF form with multiple drop downs, all with the same drop down values. When I select a value from 1 of the drop down fields, it replicates in all of the others - which I do not want. Can I fix this?

    I'm fairly new to this, but I think it has to do with the way you have the drop downs named. Did you copy one then keep pasting it in each field? If so, that is the problem. You should rename each one with a different number: Dropdown1, Dropdown2, etc. I think that might solve the issue.

  • 2 independent  selectOneChoice with the same value

    So I have two selectOneChoice with the same list values but different methodAction and methodIterator.
    when i change one's item and correspond to value, changing the other's item and value automatic, why?
    what is wrong? I'll send the code fragment
    How to make 2 independent list from the same business method?
    Jspx file
    <af:selectOneChoice value="#{bindings.*test1*.inputValue}"
    label="#{bindings.*test1*.label}">
    <f:selectItems value="#{bindings.*test1*.items}"/>
    </af:selectOneChoice>
    <af:selectOneChoice value="#{bindings.*test2*.inputValue}"
    label="#{bindings.*test2*.label}">
    <f:selectItems value="#{bindings.*test2*.items}"/>
    </af:selectOneChoice>
    the pagedefinition file is
    <executables>
    <methodIterator id="*queryTestIter*"
    Binds="*queryTest.result*"
    DataControl="SessionEJB1Local" RangeSize="-1"
    BeanClass="project1.DependentStrings"/>
    <methodIterator id="*queryTestIter1*"
    Binds="*queryTest1.result"*
    DataControl="SessionEJB1Local" RangeSize="-1"
    BeanClass="project1.DependentStrings"/>
    </executables>
    <bindings>
    <methodAction id="*queryTest*"
    InstanceName="SessionEJB1Local.dataProvider"
    DataControl="SessionEJB1Local"
    MethodName="*methodOne*"
    RequiresUpdateModel="true" Action="999"
    IsViewObjectMethod="false"
    ReturnName="SessionEJB1Local.methodResults.SessionEJB1Local_dataProvider_queryTest_result">
    </methodAction>
    <methodAction id="*queryTest1*"
    InstanceName="SessionEJB1Local.dataProvider"
    DataControl="SessionEJB1Local"
    MethodName="*methodOne*"
    RequiresUpdateModel="true" Action="999"
    IsViewObjectMethod="false"
    ReturnName="SessionEJB1Local.methodResults.SessionEJB1Local_dataProvider_queryTest1_result">
    </methodAction>
    <list id="*test1*" IterBinding="findallItemIter"
    StaticList="false" ListOperMode="0"
    ListIter="*queryTestIter*">
    <AttrNames>
    <Item Value="*item1Id*"/>
    </AttrNames>
    <ListAttrNames>
    <Item Value="id"/>
    </ListAttrNames>
    <ListDisplayAttrNames>
    <Item Value="stringValue"/>
    </ListDisplayAttrNames>
    </list>
    <list id="*test2*" IterBinding="findallItemIter"
    StaticList="false" ListOperMode="0"
    ListIter="*queryTestIter1*">
    <AttrNames>
    <Item Value="*item2Id*"/>
    </AttrNames>
    <ListAttrNames>
    <Item Value="id"/>
    </ListAttrNames>
    <ListDisplayAttrNames>
    <Item Value="stringValue"/>
    </ListDisplayAttrNames>
    </list>

    there is a list with different listIter's value,but it dos't work
    <list id="test1" IterBinding="findallItemIter"
    StaticList="false" ListOperMode="0"
    ListIter="queryTestIter">
    <AttrNames>
    <Item Value="item1Id"/>
    </AttrNames>
    <ListAttrNames>
    <Item Value="id"/>
    </ListAttrNames>
    <ListDisplayAttrNames>
    <Item Value="stringValue"/>
    </ListDisplayAttrNames>
    </list>
    <list id="test2" IterBinding="findallItemIter"
    StaticList="false" ListOperMode="0"
    ListIter="queryTestIter1">
    <AttrNames>
    <Item Value="item2Id"/>
    </AttrNames>
    <ListAttrNames>
    <Item Value="id"/>
    </ListAttrNames>
    <ListDisplayAttrNames>
    <Item Value="stringValue"/>
    </ListDisplayAttrNames>
    </list>
    Edited by: user638080 on Sep 9, 2008 12:22 AM

  • How to display data with the same text and key in the drop down list?

    Hi All,
    Would like so to seek for you advice on the above mention topic. How to display the data with the same text and key using function module 'VRM_SET_VALUES'. From my testing by writing a program, this function module will only show the text and key if both have different data. Please find the coding as below. Is the normal behaviour of this function module? How to overcome this problem? Thanks in advance.
    REPORT ZTESTING.
    TYPE-POOLS: VRM.
    DATA: NAME  TYPE VRM_ID,
          LIST  TYPE VRM_VALUES,
          VALUE LIKE LINE OF LIST,
          c(20) type c.
    *      c = 'select any'.
    data:begin of itab occurs 0,
          kunnr like kna1-kunnr,
          name1 like kna1-name1,
         end of itab.
    data:begin of jtab occurs 0,
          kunnr like kna1-kunnr,
          land1 like kna1-land1,
         end of jtab.
    PARAMETERS: p_list(20) AS LISTBOX VISIBLE LENGTH 20
                              default 'SELECT'.
    AT SELECTION-SCREEN OUTPUT.
    NAME = 'p_list'.
    VALUE-KEY = 'Name'.     "---> Data for key is the same with text
    VALUE-TEXT = 'Name'.    "--> Data for text is the same with key
    APPEND VALUE TO LIST.
    VALUE-KEY = '2'.
    VALUE-TEXT = 'Country'.
    APPEND VALUE TO LIST.
    CALL FUNCTION 'VRM_SET_VALUES' EXPORTING ID = NAME VALUES = LIST.
    start-of-selection.
    select kunnr name1 up to 20 rows from kna1 into table itab.
    select kunnr land1 up to 20 rows from kna1 into table jtab.
    case p_list.
    when '1'.
    loop at itab.
    write:/ itab-kunnr,itab-name1.
    endloop.
    when '2'.
    loop at jtab.
    write:/ jtab-kunnr,jtab-land1.
    endloop.
    endcase.
    <Added code tags>
    Moderator Message: Please use the "code" tags to format your code snippet.
    Edited by: Suhas Saha on Nov 17, 2011 11:19 AM

    shawnTan wrote:
    Hi All,
    >
    > Would like so to seek for you advice on the above mention topic. How to display the data with the same text and key using function module 'VRM_SET_VALUES'. From my testing by writing a program, this function module will only show the text and key if both have different data. Please find the coding as below. Is the normal behaviour of this function module? How to overcome this problem? Thanks in advance.
    >
    >
    REPORT ZTESTING.
    >
    > TYPE-POOLS: VRM.
    >
    > DATA: NAME  TYPE VRM_ID,
    >       LIST  TYPE VRM_VALUES,
    >       VALUE LIKE LINE OF LIST,
    >       c(20) type c.
    >
    > *      c = 'select any'.
    >
    > data:begin of itab occurs 0,
    >       kunnr like kna1-kunnr,
    >       name1 like kna1-name1,
    >      end of itab.
    >
    > data:begin of jtab occurs 0,
    >       kunnr like kna1-kunnr,
    >       land1 like kna1-land1,
    >      end of jtab.
    >
    > PARAMETERS: p_list(20) AS LISTBOX VISIBLE LENGTH 20
    >                           default 'SELECT'.
    >
    > AT SELECTION-SCREEN OUTPUT.
    >
    > NAME = 'p_list'.
    >
    > VALUE-KEY = 'Name'.     "---> Data for key is the same with text
    > VALUE-TEXT = 'Name'.    "--> Data for text is the same with key
    > APPEND VALUE TO LIST.
    >
    > VALUE-KEY = '2'.
    > VALUE-TEXT = 'Country'.
    > APPEND VALUE TO LIST.
    >
    > CALL FUNCTION 'VRM_SET_VALUES' EXPORTING ID = NAME VALUES = LIST.
    >
    > start-of-selection.
    > select kunnr name1 up to 20 rows from kna1 into table itab.
    > select kunnr land1 up to 20 rows from kna1 into table jtab.
    >
    > case p_list.
    > when '1'.
    > loop at itab.
    > write:/ itab-kunnr,itab-name1.
    > endloop.
    >
    > when '2'.
    > loop at jtab.
    > write:/ jtab-kunnr,jtab-land1.
    > endloop.
    > endcase.
    >
    > <Added code tags>
    >
    > Moderator Message: Please use the "code" tags to format your code snippet.
    >
    > Edited by: Suhas Saha on Nov 17, 2011 11:19 AM
    This surely seems to be a bug to me(if not by design),  did you check for any SAP notes? Perhaps a front end trace can help(Note 407743) !
    -Rajesh.

  • How do I export jpgs as tifs with the original resolution ?

    Hi,
    I am very new to Lightroom 5 (I only installed it today (on Windows 8.1) :-)) but I have read Victoria Bampton's Quick Start Guide and have read a number of forum posts over the last few weeks to get an idea about how the program generally works.
    I am embarking on a project to scan and archive my family's photos and videos, and I will be using Lightroom to manage the collection.  To start the project, I have just imported over 10,000 digital photos taken by a variety of cameras (36 of them, according to Lightroom !)  over the last 12 years or so into a new Lightroom catalogue.   These are all currently JPEG files, but I want to keep TIFF files in the collection because my research has led me to the conclusion that TIFF is a better long-term archival format.
    I started by doing an Export of a small number of photos to save the .jpg files as .tif files, but when reviewing the results, I noticed that the image's resolution was changed during the export.  For example, one original jpg is only 96ppi but the exported tif is 240ppi.  Another jpg is 180ppi and the tif is 240ppi.  At least, that's what the metadata seems to be telling me (via the Details tab of the Properties dialog in Windows), so I assume it's true...
    I understand that the 240ppi that I am seeing in the .tif file metadata was specified in the Image Sizing section of the Export dialog, so that's not the issue.  
    I would prefer it if the .tif file has the exact same resolution (ppi) as the original .jpg, but I am unable to work out how to do it.   It would be great if the resolution setting in the Export dialog was controlled by the Resize to Fit checkbox, like the other settings in the section, but it doesn't appear to be (it's enabled even if the Resize to Fit checkbox is unticked).
    I then thought about using the Library Filters to filter by the Horizontal Resolution metadata, so that I could select all the photos with the same resolution and export just those with the Resolution setting in the Export dialog set to the right number, and then repeat that process for each different group of original photos with a different resolution.  Unfortunately, I have not been able to work out how to filter by the horizontal resolution metadata field - it doesn't seem to be available in the dropdown list of fields shown when I click on the up-down arrow next to the "Date" or "Camera" (etc.) columns in the Library Filter pane.
    Finally, here's my question (or three):  
    Is there a way to export .jpgs to .tif files while keeping the original resolution ?  
    Alternatively, is there a way to select groups of photos by their horizontal or vertical resolution (so just those photos could be exported in a group with the right resolution specified) ?
    Or is there any other way to do what I want (convert jpg to tif with the same resolution and keeping all the metadata) ?
    Thanks for reading all the way through to the end.
    John.

    These are all currently JPEG files, but I want to keep TIFF files in the collection because my research has led me to the conclusion that TIFF is a better long-term archival format.
    I'm not sure why you say this. In terms of long-term archival format, I think the two are equal, I am not aware of other reasons to do this, and thus in my opinion, the task of globally turning all your JPGs into TIFFs seems unnecessary. You don't gain anything by doing this. But you sure will spend a lot of time and take up a lot of disk space doing this.
    I would prefer it if the .tif file has the exact same resolution (ppi) as the original .jpg, but I am unable to work out how to do it.
    Again, I think you have embarked upon an unnecessary task. The ppi in the file is essentially meaningless. A photo that has (for example) 3000x2000 pixels saved at 240 ppi is the exact same photo as the same photo 3000x2000 saved at 180ppi, not a single pixel has changed. You are placing a meaning and importance to this ppi number that just doesn't exist.
    To answer your questions at the bottom, I would advise you to not do the things you are talking about, it seems to me that you have greatly misunderstood things.

  • How do I create a graph with two different y-axis variables with the same x-axis (therefor having two curves)?, How do I create a graph with two different y-axis variables with the same x-axis (therefor having two curves)?

    How do I create a graph with two different y-axis variables with the same x-axis (therefor having two curves)?, How do I create a graph with two different y-axis variables with the same x-axis (therefor having two curves)?

    Hi Libby,
    Select all three columns of data. All three must be 'regular' columns, not Header columns, and the X values must be in the leftmost column.
    Click the Charts button and choose the Scatter chart.
    The resulting chart will initially show only the first and second columns of data, and the selection will have been reduced to show this.
    Click the gear icon at the top left of the selection and choose Share X Values.
    You should see a result similar to this:
    Notes:
    The values on my sample table contain a random element, so they have changed from thhe first image to the second.
    The chart is as created by Numbers, with two edits:
    Data points have been connected with curves, using the Chart nspector.
    The curves were selected and their stroke increased to 2pts, using the stroke formating button in the format bar.
    Regards,
    Barry

  • 3 genre folders with the same content, also can't play my homemade iMovie

    I downloaded songs from 17 different jazz albums and categorized them under the genre "jazz" in iTunes. However, after importing, my iPod lists 3 different "jazz" folders, one as 17 albums, 47 songs, the second 3 albums 15 songs and the third says 1 album and 1 song - but opening any of these folders reveals all 47 jazz songs! In iTunes, all the songs under "jazz" are written exactly the same, no misspellings, no caps/lower case mixes - I can't figure it out.
    And while I'm here, I also can't find my homemade iMovie which shows up and plays in iTunes but not on the iPod.

    For the first problem, all I can suggest is trying the "The Five Rs" to make sure everything is up-to-date & restored to the Nano with the same genre as in iTunes.
    For the second, have you exported/published the movie to iTunes from within the iMovie application or added it to the iTunes library in some other way? iPods only support a limited subset of MPEG-4 video formats, while iTunes can support any video format that Quicktime does. You don't say which version of iMovie you have but for example, iMovie 8.0 Help: Downloading your movies to your iPod or iPhone explains the steps to publish an iMovie 8 project to iTunes in a format suitable for various devices.
    The iMovie 8.0 Help topic "Customizing your QuickTime export" also has info you may find useful if you want to customize the rendering options beyond the preset ones recommended for use with a particular device. Refer to the Nano's tech specs for the codecs, frame sizes, & frame rates it can support. Choose any options that meet but don't exceed those specs & you should be able to add the movie to your Nano at a variety of sizes, qualities, & frame rates to suit just about any purpose.

Maybe you are looking for

  • MySQL socket problems after system update

    I have been using my new Mac Mini Snow Leopard server as Squeezebox Server for over a month wihtout problems. After a system update this weekend I started to get MySQL socket errors after reboot. Started; log sequence number 0 43655 091213 17:10:04 [

  • Function to covert LONG to CLOB

    Can you please tell me the name of the function through which I can change the LONG datatype to CLOB.

  • Question i backed up my iphone how do I open old texts and other info

    Question I backed up my iphone on itunes. I see that it was backed up then restored it. How do I get the info i backed up?

  • Can anyone help me with some needed iweb advice

    First thanks for taking the time and reading this. I currently have four mr site websites three we use for our academy and one which is just my personal site. I have been playing with the iweb and love it, and would rather use those templates as i fi

  • 2014 Macbook Air running slow?

    My 2014 Macbook Air seems to be running a little slower since updating, I have a lot of memory available and I haven’t downloaded anything from the web. I’ve also done the resets and emptying cache in Chrome and all that, it started running faster af