Hi, This is Raju, Is it possible to export data from sql server table to excel sheet but excel sheet has formulated
@SyedAliM4 ай бұрын
yes, it can be.you can use the macro in excel, after loading the data, use the macro for formatting manually.
@Manasika7 ай бұрын
Nice and Thankyou for uploading Valuable Content. Keep Going on.
@SyedAliM6 ай бұрын
Welcome.
@Dungtungtang7 ай бұрын
thanks you very much. Your video is helpful to me
@SyedAliM7 ай бұрын
You are welcome
@treydugas8068 ай бұрын
Worked perfectly for me, thank you so much!
@SyedAliM8 ай бұрын
You're welcome!
@mohammedalmalky11 ай бұрын
👍👍👍
@SyedAliM4 ай бұрын
Most Welcome.
@PujariChakradhar Жыл бұрын
It's showing wrong. It's not getting the multiple excel file data from same folder
@SyedAliM Жыл бұрын
Please see carefully, for multiple excel file use for each loop container , you can check from this this frame kzbin.info/www/bejne/fXLZnYiOZruVZ5Y and you will get your answer
@leonardocampelo1 Жыл бұрын
Excelente trabalho!
@SyedAliM4 ай бұрын
thanks.
@leonardoc.l.guedes9375 Жыл бұрын
Muito Bom, Parabéns pelo trabalho.
@SyedAliM3 ай бұрын
Most Welcome.
@mdadilkhan1837 Жыл бұрын
Hi Syed, if suppose in a single sheet we have delhi, mumbai and punjab data then how to read the data and sent it to different tables.
@SyedAliM Жыл бұрын
you can use Conditional Split in SSIS, Step 1: Take the excel data source and configure it data connection. Step 2: Take the Conditional Split and use in condition emp_location == "Delhi" for case 1 and emp_location == "Mumbai" for case 2. Step 3: take two oledb , one for panjab and other for delhi and map it. and run the project and data will transfer into two different table.
@NITIN6308 Жыл бұрын
Hobbies don't want in same columns every hobbies has different columns with same I'd how this possible
@khemvermajadon1664 Жыл бұрын
Incomplete plz share source code for both add and edit for clarity
@haryanvibol4257 Жыл бұрын
sir where is gender procedure code please sed me ??
@Aaru-adhya Жыл бұрын
In Excel editor that the name of the Excel sheel(sheet$ )how do I create where did I get it
@codingislife6387 Жыл бұрын
Thanks Sir
@natet8148 Жыл бұрын
Woah man this is a crazy new technology that I wan tto more know more about. I have the EMMDot Two Slots on my pc in the back but how do i make it the WDGREEN
@alwinwatt9840 Жыл бұрын
promo sm
@sambitpati61292 жыл бұрын
nice explanation sir
@SyedAliM2 жыл бұрын
Thanks and welcome
@sushantparajuli6112 жыл бұрын
Thank you for the video. Worked!!
@SyedAliM2 жыл бұрын
You're welcome!
@adithyadeedepya29602 жыл бұрын
2015 edition is not available, can u suggest how to get 2015 community edition
Which of the 4 ways of passing data from view to controller is "best" today would you say? Helpful video, thanks.
@SyedAliM4 ай бұрын
most welcome.
@phamthiphuong98062 жыл бұрын
what code?
@saeedahmadoffical88502 жыл бұрын
sir why not u used database first concept.
@katimboallan46052 жыл бұрын
Good tutorial but where do I get the webapi_sample3 project??
@SyedAliM2 жыл бұрын
thanks. kzbin.info/www/bejne/a5rTpp1-p7mfbpI
@myanmarexcelexpertteam75392 жыл бұрын
Thanks much, Sir. You did a very good job. Keep going!
@SyedAliM2 жыл бұрын
Thank you too!
@sunshinelight42742 жыл бұрын
Hi Sir, can you please guide on how to consume webapi by passing different parameters from database table as a request using http client. It’s little urgent. Thanks
@debanjanmukherjee24602 жыл бұрын
Thank u so much
@SyedAliM2 жыл бұрын
Most welcome 😊
@duhantark20602 жыл бұрын
thank you
@SyedAliM2 жыл бұрын
You're welcome
@idriswale39622 жыл бұрын
I need assistance on a project. i don't know if you can help out
@samikshabadiganti52352 жыл бұрын
how can I Bind Check Box List from database in ASP.NET MVC5 and save the selected value in xml file rather on a database.? I need a xml file to automatically generate...
@hasanmougharbel80302 жыл бұрын
Hey there, Great efforts in this channel. I have learned recently about assemblies. In what way, Assemblies are different from stored procedures? I appreciate your help at your sole convenience. Thanks a lot.
@SyedAliM2 жыл бұрын
Thanks for the info!
@harisulislam63022 жыл бұрын
Hi sir, how to call parcial view on layout pages with dropdownlist from Database
@SyedAliM2 жыл бұрын
kzbin.info/www/bejne/np3LiGmbi9J5ask
@GetSetGoooooo2 жыл бұрын
Best guide I have seen
@SyedAliM2 жыл бұрын
thanks
@daxton74622 жыл бұрын
✅ p͎r͎o͎m͎o͎s͎m͎
@kwadwoasante44792 жыл бұрын
Hi Syed, you've done a good job. Well done. Could you please post the remaining source code in the description. Thank you.
@SyedAliM2 жыл бұрын
Function to save the data table( which are converted to json to data table) in excel: public static void Save_data_table_to_excel(DataTable dt) { int intHeaderLength = 3; int intColumn = 0; int intRow = 0; string Work_sheet_name = "Employee daetails"; string Report_Type = "Details"; System.Reflection.Missing Default = System.Reflection.Missing.Value; //create the excel file //string FilePath = @"\\Excel" + DateTime.Now.ToString().Replace(":", "_" + ".xlsx"); string FilePath = @"F:\Project-Library\cSharp\Export_to_Excel_data_table\Export_to_Excel_data_table\Export_to_Excel_data_table\bin\Debug\Employee.xls"; Microsoft.Office.Interop.Excel.Application excel; Microsoft.Office.Interop.Excel.Workbook excelworkbook; Microsoft.Office.Interop.Excel.Worksheet excelsheet; Microsoft.Office.Interop.Excel.Range excelCellRange; try { //start the application excel = new Microsoft.Office.Interop.Excel.Application(); if (excel == null) { Console.WriteLine("getting null values"); } //for making excel visiable excel.Visible = false; excel.DisplayAlerts = false; // creation a new work book excelworkbook = excel.Workbooks.Add(Type.Missing); //excelsheet excelsheet = (Microsoft.Office.Interop.Excel.Worksheet)excelworkbook.ActiveSheet; excelsheet.Name = Work_sheet_name; excelsheet.Cells[1, 2] = Report_Type; excelsheet.Cells[1, 2] = "Date :" + DateTime.Now.ToShortDateString().ToString(); // loop through each row and add the value to our sheet int rowcount = 2; foreach (DataRow datarow in dt.Rows) { rowcount += 1; for (int i = 1; i < dt.Columns.Count; i++) { // on first iteration we add column header excelsheet.Cells[2, i] = dt.Columns[i - 1].ColumnName; excelsheet.Cells.Font.Color = System.Drawing.Color.Black; excelsheet.Cells[rowcount, i] = datarow[i - 1].ToString(); // for alternate rows if (rowcount > 3) { if (i == dt.Columns.Count) { if (rowcount % 2 == 0) { excelCellRange = excelsheet.Range[excelsheet.Cells[rowcount, 1], excelsheet.Cells[rowcount, dt.Columns.Count]]; } } } } // now resize the columns excelCellRange = excelsheet.Range[excelsheet.Cells[1, 1], excelsheet.Cells[rowcount, dt.Columns.Count]]; excelCellRange.EntireColumn.AutoFit(); } //now save the work book and exit the ecel excelworkbook.SaveAs(FilePath); excelworkbook.Close(); excel.Quit(); // } } catch (Exception ex) { Console.WriteLine(ex.Message); Console.ReadKey(); } finally { excelsheet = null; excelCellRange = null; excelworkbook = null; } }
@jayakumar29272 жыл бұрын
Api code
@jayakumar29272 жыл бұрын
API COde share
@jayakumar29272 жыл бұрын
share github link
@santhoshs98352 жыл бұрын
I am getting error like "The project "project name" failed to build " error when running enable-migrations cmd.what is the problem? Any one give me tha solution.
@mukeshkr84142 жыл бұрын
Code??
@japandreamer20112 жыл бұрын
Very nice, Thanks a lot...
@SyedAliM2 жыл бұрын
Most welcome!
@rajkumarbaishya66062 жыл бұрын
Sir I am working on a Maven Project with MongoDB database
@HM_Milan2 жыл бұрын
Thanks
@SyedAliM2 жыл бұрын
Welcome
@sriramch31282 жыл бұрын
Thanku very useful to me
@SyedAliM2 жыл бұрын
Welcome
@abhaydahiwale12022 жыл бұрын
Want more videos related ssis
@SyedAliM2 жыл бұрын
kzbin.info/www/bejne/iWOyqqGngK6rgMU
@akshatjain38002 жыл бұрын
👍
@tahirm092 жыл бұрын
good, can i contact with you plz
@himanshumetai8133 жыл бұрын
Hey Syed, great work mate. Could you please post the entire source code in the comments or send me the link of the source. Your help will be truly appreciated.