How do I import Excel cell data in to an already built custom list.
I have a custom list that we are using as an End Of Shift Report.
I would like to expand the list to incorporate some of our process data. (We are a paper mill). We have a data historian, PI Process Book, that has an Excel add-in, that allows us to import the process data in to Excel.
I am able to do the "import spreadsheet" function and get the data in to a new list. What I can't figure out is either how to import directly in to the custom list I have already created, or how to import from the new list to the custom list.
I could use the "new list" as a container for several different process points if I could figure out how to load the process data in to the custom list.
We are currently using WSS3, but are upgrading in either the 4th Q this year, or Q1 2014.
Any other suggestions on how to display single point data (End of Shift Inventory calculations for example) in a custom sharepoint list are welcome.
I want to take a tank level reading, which we monitor and multiply it by X gallons per foot, then load the total gallons in to the custom list
1) Open WSS List, and Export it to Excel
2) Open the Excel file you want to import
3) Copy the cells in the source and paste them into the Excel file openned from the WSS List (only highlight one row to paste, it will fill down)
4) You will see vaildation errors (yellow triangles), if there are any, correct them
5) In the menubar go Data --> List --> Sync List
6) You will see a blue status bar fill in the bottom left as data is copied up to the List
Or you can try the below tools
> SharePoint Excel Import 2.5
http://www.boostsolutions.com/sharepoint-excel-import.html
> Import Excel data to SharePoint List.
http://spreadsheet2splist.codeplex.com/
Regards MuSa
Similar Messages
-
HOW TO PRINT THE EXCEL CELL COMMENT IN JAVA SWING FRAME ?
How to print the excel cell comment in java swing frame
user can print the data of cell with comment in bracket in java swing frame.
please make one java code to read an excel spreed sheet and print the output in Java swing frame as follows
EMP NO - 1, 2, 3
EMP NAME - aname (amitesh:very good), bname (amitesh: average), cname (amitesh: very bad)
EMP AGE - 11, 22, 33
EMP DESG - ad, bd, cd
Note: the bracket portion is the excel comments put in that cellhello everyone i'm new to this forum..how are you all...
Jack Brosnan
[mobile phone|http://www.mobilephonesforsale.net.au/apple-iphone-f-2.html] -
Import Excel events, dates info to iCal
I cannot seem to find the easy way to import excel events, dates, birthday, games etc. into iCal. There has to be an easy way.
Hi jkuyio
1. Regarding the connection string and the provider, are you using 64 bit or 32 bit?
2. By the way, Your question is not related to this forum i think. I mean you can use SSIS for this and work with SQL Server database as well but i think this is not the right way to do it!
In any case you can check this link for more information on connecting the MySQL from SSIS:
http://blogs.msdn.com/b/mattm/archive/2008/03/03/connecting-to-mysql-from-ssis.aspx
* Basically you can connect to any data source that you have the right data provider.
** Data from Excel spreadsheet can be exported to a new MySQL database table directly, by using the Export Excel Data to New Table optionhttp://dev.mysql.com/doc/refman/5.6/en/mysql-for-excel-export.html
** Data can be import into the MySQL as well:
http://www.w3resource.com/mysql/exporting-and-importing-data-between-mysql-and-microsoft-excel.php
I hope this is useful :-)
[Personal Site] [Blog] [Facebook] -
How do I import non-numeric data into DIAdem?
I have some non-numeric data in an Excel file which I would like to import into DIAdem. DIAdem recognizes the file and imports some of the data, but it only imports those cells that are purely numeric. Cells containing non-numeric characters are ignored. But I need that non-numeric data! How do I force DIAdem to import everything? (Some controls appear in the import dialog that seem like they might be useful here but they're greyed out.)
Hi There,
You can not load text columns from ASCII files into DIAdem 8.1 DATA channels (numbers only). But the ASCII Import Wizard will let you send those text values to either a separate ASCII file, which DIAdem can use to put them on a graph as labels, or to a DIAdem string array, which DIAdem can use to display them at various places in its environment.
The below attachments demonstrate reading an ASCII text column into a DIAdem string array and displaying the values on a DIAdem table in GRAPH. Note that the index values of the string array are placed in a DIAdem DATA channel.
Ask if you have further questions,
Brad Turpin
NI
Attachments:
ASCII_Text_Column.txt 1 KB
ASCII_Text_Column.STP 1 KB
ASCII_Text_Column.LPD 3 KB -
How to fix the excel cell length in the sap
hi
i want to fix the excel cell length in the sap. how to fix
perform fill_cell1 using l_row l_col 1 wa_cat-seltext_l.
i want to fix the fill_cell1 how to do.
Regards,
sivakumarhi
good
go through this
The following thread has the code which will put data into multiple sheets
Download to multiple sheets in Excel
FOR COLOR LOGIC JUST REFER THIS PROGRAM
*& Report ZNEGI17 *
REPORT ZNEGI17 NO STANDARD PAGE HEADING.
this report demonstrates how to send some ABAP data to an
EXCEL sheet using OLE automation.
INCLUDE OLE2INCL.
handles for OLE objects
DATA: H_EXCEL TYPE OLE2_OBJECT, " Excel object
H_MAPL TYPE OLE2_OBJECT, " list of workbooks
H_MAP TYPE OLE2_OBJECT, " workbook
H_ZL TYPE OLE2_OBJECT, " cell
H_F TYPE OLE2_OBJECT. " font
TABLES: SPFLI.
DATA H TYPE I.
table of flights
DATA: IT_SPFLI LIKE SPFLI OCCURS 10 WITH HEADER LINE.
*& Event START-OF-SELECTION
START-OF-SELECTION.
read flights
SELECT * FROM SPFLI INTO TABLE IT_SPFLI UP TO 10 ROWS.
display header
ULINE (61).
WRITE: / SY-VLINE NO-GAP,
(3) 'Flg'(001) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP,
(4) 'Nr'(002) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP,
(20) 'Von'(003) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP,
(20) 'Nach'(004) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP,
(8) 'Zeit'(005) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP.
ULINE /(61).
display flights
LOOP AT IT_SPFLI.
WRITE: / SY-VLINE NO-GAP,
IT_SPFLI-CARRID COLOR COL_KEY NO-GAP, SY-VLINE NO-GAP,
IT_SPFLI-CONNID COLOR COL_NORMAL NO-GAP, SY-VLINE NO-GAP,
IT_SPFLI-CITYFROM COLOR COL_NORMAL NO-GAP, SY-VLINE NO-GAP,
IT_SPFLI-CITYTO COLOR COL_NORMAL NO-GAP, SY-VLINE NO-GAP,
IT_SPFLI-DEPTIME COLOR COL_NORMAL NO-GAP, SY-VLINE NO-GAP.
ENDLOOP.
ULINE /(61).
tell user what is going on
CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
EXPORTING
PERCENTAGE = 0
TEXT = TEXT-007
EXCEPTIONS
OTHERS = 1.
start Excel
CREATE OBJECT H_EXCEL 'EXCEL.APPLICATION'.
PERFORM ERR_HDL.
SET PROPERTY OF H_EXCEL 'Visible' = 1.
CALL METHOD OF H_EXCEL 'FILESAVEAS' EXPORTING #1 = 'c:\kis_excel.xls'
PERFORM ERR_HDL.
tell user what is going on
CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
EXPORTING
PERCENTAGE = 0
TEXT = TEXT-008
EXCEPTIONS
OTHERS = 1.
get list of workbooks, initially empty
CALL METHOD OF H_EXCEL 'Workbooks' = H_MAPL.
PERFORM ERR_HDL.
add a new workbook
CALL METHOD OF H_MAPL 'Add' = H_MAP.
PERFORM ERR_HDL.
tell user what is going on
CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
EXPORTING
PERCENTAGE = 0
TEXT = TEXT-009
EXCEPTIONS
OTHERS = 1.
output column headings to active Excel sheet
PERFORM FILL_CELL1 USING 1 1 1 'Flug'(001).
PERFORM FILL_CELL1 USING 1 2 0 'Nr'(002).
PERFORM FILL_CELL1 USING 1 3 1 'Von'(003).
PERFORM FILL_CELL1 USING 1 4 1 'Nach'(004).
PERFORM FILL_CELL1 USING 1 5 1 'Zeit'(005).
LOOP AT IT_SPFLI.
copy flights to active EXCEL sheet
H = SY-TABIX + 1.
PERFORM FILL_CELL USING H 1 0 IT_SPFLI-CARRID.
PERFORM FILL_CELL USING H 2 0 IT_SPFLI-CONNID.
PERFORM FILL_CELL USING H 3 0 IT_SPFLI-CITYFROM.
PERFORM FILL_CELL USING H 4 0 IT_SPFLI-CITYTO.
PERFORM FILL_CELL USING H 5 0 IT_SPFLI-DEPTIME.
ENDLOOP.
changes by Kishore - start
CALL METHOD OF H_EXCEL 'Workbooks' = H_MAPL.
CALL METHOD OF H_EXCEL 'Worksheets' = H_MAPL." EXPORTING #1 = 2.
PERFORM ERR_HDL.
add a new workbook
CALL METHOD OF H_MAPL 'Add' = H_MAP EXPORTING #1 = 2.
PERFORM ERR_HDL.
tell user what is going on
SET PROPERTY OF H_MAP 'NAME' = 'COPY'.
CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
EXPORTING
PERCENTAGE = 0
TEXT = TEXT-009
EXCEPTIONS
OTHERS = 1.
output column headings to active Excel sheet
PERFORM FILL_CELL1 USING 1 1 1 'Flug'(001).
PERFORM FILL_CELL1 USING 1 2 0 'Nr'(002).
PERFORM FILL_CELL1 USING 1 3 1 'Von'(003).
PERFORM FILL_CELL1 USING 1 4 1 'Nach'(004).
PERFORM FILL_CELL1 USING 1 5 1 'Zeit'(005).
LOOP AT IT_SPFLI.
copy flights to active EXCEL sheet
H = SY-TABIX + 1.
PERFORM FILL_CELL USING H 1 0 IT_SPFLI-CARRID.
PERFORM FILL_CELL USING H 2 0 IT_SPFLI-CONNID.
PERFORM FILL_CELL USING H 3 0 IT_SPFLI-CITYFROM.
PERFORM FILL_CELL USING H 4 0 IT_SPFLI-CITYTO.
PERFORM FILL_CELL USING H 5 0 IT_SPFLI-DEPTIME.
ENDLOOP.
changes by Kishore - end
disconnect from Excel
CALL METHOD OF H_EXCEL 'FILESAVEAS' EXPORTING #1 = 'C:\SKV.XLS'.
FREE OBJECT H_EXCEL.
PERFORM ERR_HDL.
FORM FILL_CELL *
sets cell at coordinates i,j to value val boldtype bold *
FORM FILL_CELL1 USING I J BOLD VAL.
data : color(5) type x value 'H80000008'.
CALL METHOD OF H_EXCEL 'Cells' = H_ZL EXPORTING #1 = I #2 = J.
PERFORM ERR_HDL.
SET PROPERTY OF H_ZL 'Value' = VAL .
PERFORM ERR_HDL.
GET PROPERTY OF H_ZL 'Font' = H_F.
PERFORM ERR_HDL.
SET PROPERTY OF H_F 'Bold' = BOLD .
PERFORM ERR_HDL.
SET PROPERTY OF H_F 'ColorIndex' = 3 .
PERFORM ERR_HDL.
ENDFORM.
*& Form ERR_HDL
outputs OLE error if any *
--> p1 text
<-- p2 text
FORM ERR_HDL.
IF SY-SUBRC <> 0.
WRITE: / 'Fehler bei OLE-Automation:'(010), SY-SUBRC.
STOP.
ENDIF.
ENDFORM. " ERR_HDL
*& Form FILL_CELL1
text
-->P_H text
-->P_1 text
-->P_0 text
-->P_IT_SPFLI_CARRID text
form FILL_CELL using I J BOLD VAL.
CALL METHOD OF H_EXCEL 'Cells' = H_ZL EXPORTING #1 = I #2 = J.
PERFORM ERR_HDL.
SET PROPERTY OF H_ZL 'Value' = VAL .
PERFORM ERR_HDL.
GET PROPERTY OF H_ZL 'Font' = H_F.
PERFORM ERR_HDL.
endform. " FILL_CELL1
thanks
mrutyun^ -
How to update existing excel cell by dropdown value in ole programm
hi guys,
i am updating excel sheet using ole program, i stuck in point where i want to fill an excel cell by selecting dropdown value from list,
how it can be achieve.I don't think it is possible to refer to cell in excel using jdbc, since jdbc is intended to communicate with mostly database in generic way. So you have to use queryStrings to update or retive cell info.
The only way to access them by cell name is possibly by using some third party tools. -
How to unfreeze the excel cells
Dear All,
Please i haven a file with freeze cells please i need to unfreeze cells urgently please help.
MS USERHi,
Check out this one "How to Lock or Unlock Excel cells".
For more:
http://office.microsoft.com/en-001/excel-help/lock-or-unlock-specific-areas-of-a-protected-worksheet-HA010096837.aspx
http://office.microsoft.com/en-001/excel-help/unlock-protected-cells-HA102809343.aspx
Note: Improve community discussions by marking the answers helpful.
Thanks
Clark Kent -
Listen for excel cell data change
I want to develop a program that listens when an excel cell value changes...
snoopybad77 wrote:
I use http://jdde.pretty-tools.com/ very simple but working.
By the looks of it, you might want to start with [DDEClientEventListener.onItemChanged()|http://jdde.pretty-tools.com/javadoc/com/pretty_tools/dde/client/DDEClientEventListener.html#onItemChanged%28java.lang.String,%20java.lang.String,%20java.lang.String%29], but I've got absolutely no idea how it works, never having used the product before.
Winston
Edited by: YoungWinston on Jul 5, 2010 1:43 AM
PS: It looks like there's something very similar to what you want on their examples page as well. You clearly haven't done much looking. -
How do I import a CSV file of contacts as a new contact list?
How do I import a csv contact file in to my Thunderbird account as a separate Contact list?
I have done everything I can think of. I have imported CSV files in the past, but now that i've upgraded Thunderbird, there is no option to import CSV files. It says
Import Everything
or select the type of material to import:
Address Books
Mail
Feed Subscriptions
Settings
Filters
I have tried all of them and nothing allows me to import anything but Outlook Express when I choose everything. The others give me some options, but I can only import outlook CSV files. I don't have Outlook on my computer, nor do I have Eurdora nor Windows live mail, which comes up under settings. Feeds will not accept CSV files. Nothing seems to take these files any more. I put them in Openoffice spreadsheet and tried to move them from there, but that didn't work either. -
Created By and Created Date fields not showing up on Custom List form webpart
Hi,
I have added Custom Listform WebPart on "DispForm.aspx" of custom list. I need to display, out of box fields "Author" [Created By] and "Created" [Creation Date] on this custom list form webpart, I have added them on the webpart, following is the code behind of aspx page:
<td width ="400px" valign= "top" class="ms-formbody">
<xsl: value-of select = "@Author" disable-output-escaping = "yes"/>
</td>
However these fields are not showing/populating data on the form ?? Any inputs ???
RegardsHi,
I think that when you insert a custom list form web part you select “Item” content type, so custom list form is designed to display only the fields that are appropriate for that content type “Item”, but the item content type doesn’t contain the created and created by column, when you add the two columns, it will not find the field value. By default, the two columns will display at the foot of the list form using SharePoint:CreatedModifiedInfo.
Hope it can help you.
Xue-Mei Chang -
How do i import excel data base into pdf form drop down field
Hi,
I have a table of about 2500 rows and three columns that i would like to import into a drop down window on a PDF form to be self populated when item selected rather than entering the data. How can this be done?
Thanks!
RichardHi,
I did not know only two entries for each option item is it. I have manually entered data in the drop down an list boxes. With 2500 lines of data I was hoping there was an easier way other than manually entering the data.
I have no knowledge of Java Scripting.....
I was just wondering if there was a way from an Excel spreadsheet to import that data into a PDF form to be selectable to populate PDF fields in a form. It doesn't sound like it.
Thanks...... -
SSIS Import Excel Cell Properties
I'd like to use SSIS to import MS Excel Properties - e.g. Color for each cell.
Does anyone have an example of this - values are straightforward, but cell properties are not.
Thank you,
JohnThank you - this is a great start.
The above is a great example using SSIS Script Component - and part of this concept should work. If I use it like it's written I will need about 3600 variables for a 60column by 60 row spreadsheet.
I'm wondering if I can do a loop and If clause to retrieve only those cell references- that specifically meet cell color fill criteria (ie Interior.ColorIndex=7) and put those Cell References either in an array (probably easiest) which can be parsed
later from SQL Server.
This is what I have come up with sans loop/array.
' Microsoft SQL Server Integration Services Script Component
' Write scripts using Microsoft Visual Basic 2008.
' ScriptMain is the entry point class of the script.
Imports System
Imports System.Data
Imports System.Math
Imports Microsoft.SqlServer.Dts.Pipeline.Wrapper
Imports Microsoft.SqlServer.Dts.Runtime.Wrapper
<Microsoft.SqlServer.Dts.Pipeline.SSISScriptComponentEntryPointAttribute> _
<CLSCompliant(False)> _
Public Class ScriptMain
Inherits UserComponent
Public Overrides Sub PreExecute()
MyBase.PreExecute()
' Add your code here for preprocessing or remove if not needed
End Sub
Public Overrides Sub PostExecute()
MyBase.PostExecute()
' Add your code here for postprocessing or remove if not needed
' You can set read/write variables here, for example:
' Me.Variables.MyIntVar = 100
End Sub
Public Overrides Sub CreateNewOutputRows()
Dim oExcel As Object = CreateObject("Excel.Application")
Dim FileName As String
FileName = Variables.FileName
Dim oBook As Object = oExcel.Workbooks.Open(FileName)
Dim oSheet As Object = oBook.Worksheets(1)
Output0Buffer.AddRow()
' This will take too many rows.
Output0Buffer.Address = oSheet.Range("B4").Interior.ColorIndex
End Sub
End Class
John -
How do i import excel files from my pc to my iPad 2 numbers app
i was able to import PDF files from my PC to my iPad; however, if i try the same method to import Word or Excel docuements, the files do not import after i sync.
Successful method to import PDF files form my PC to my iPad:
open iTunes
select my iPad in devises
click on Apps
select PDF app under File sharing
click on Add
select file from appropriate folder in my PC
file now shows under share File sharing
Sync
file shows in my iPad in my PDF app
this method does not work for word or Excel docs
I am selecting Numbers and Pages respectively
your help is greatly appreciated.You could use Icloud to do it.
Turn on Icloud on your ipad in settings, icloud. You can have everything off if you want in icloud, but documents and data turn ON. Then on your computer go to www.icloud.com. * Click Iwork, numbers. Then just drag the files into there.
*Install the plug in if its a pc.
Thats the way I do it, so I cant walk you through the steps the other way off hand. Someone else might. -
How do I import Address Book data from an old Mac to a new one?
I just bought a MacBook using OS 10.5.1. How can I transfer the address card data from my old eMac using system 10.3.9? The two machines are currently connected with a Firewire cable, and my laptop is reading the eMac's hard drive.
It's actually very simple. In your old AB under the file menu click "Export Address Book Archive to your desktop. Then using the new system log in to the old via network and move the file from the old to the new.
Then open the new AB and click import AB archive"
You're done -
Import excel/csv data to oracle table problem
hello sir,
i am using application importing csv/excel data to oracle table which is developed by vikas and that i want but when i add csv file and upload. My cvs file will displayed but when i click on create table button then it gives error like ...
1) invalid datatype. vikas link as :
http://htmldb.oracle.com/pls/otn/wwv_flow_custom_auth_std.login_page?p_flow_page=38131:1:1287783765705596
i search in forum for solution i got following link but it also gives me error
Re: File Browse, File Upload
still i am trying but i dont get solution . plz help me!!! give me steps ......
Report on table created
says:
failed to parse SQL query:
ORA-00942: table or view does not existHi
Firstly, are you trying to upload your data into a new table or an existing table? If it's a new table, what name are you using?
Secondly, it may help if we could see a sample of the csv
Maybe you are looking for
-
I spent .75 and about 16.50 was deducted from my account
Hi I bought a song for .69 cents and about 16.50 was taken out of my account. How can I get my money back? I purchased two 25 dallor gift cards. I bought two books for 14.99 and one song for .69. It shows I only have 1.07 left. The math doesn't add u
-
How do I make simplesearch look for the same tag in multiple locations
Currently i'm trying to write a simplesearch implementation that will only return the result it if contains a specific tag. I would also like to include DAM assets in the search, wherein lies the problem: I need to look in both jcr:content and jcr:co
-
Deploying Windows Service Fails Every Other Time
I'm using Release Management 2013 to deploy a Windows service. I go through the steps listed below to deploy it. It fails on the first step (Delete Service) every other time. When I run it again, it works. It seems like it's saying it failed, but
-
Hi, I'm having trouble with filling a tree with the result to calls to a document/wrapped soap 1.1 webservice. I first declared the webservice in the mxml file as it was in the examples and tried to call it with no luck. The fault was it wasn't findi
-
Hi i have a block which consists of buttons (query,edit,add,delete,next,previous,exit,save,cancel) and i create a Procedure and write this code: PROCEDURE TOOLBAR_BUTTON IS action varchar2(50); BEGIN if action = 'query' then EXECUTE_QUERY; elsi