用于标记有关从各种数据源(SQL查询,DataGrid,DataGridView,文本文件等)编写MS-Excel文件(工作表,工作簿,.xls,.xlsx)的技术的问题。
webix.toExcel($$("dataTable")) 打印的数字不准确
我正在尝试使用此命令将数据表导出为 Excel 格式。 webix.toExcel($$("coretableCDC"), { 过滤HTML:true }); 图形用户界面-Excel 39E76 - 3.9E+77 39E78 - 3.9E+79 4E2FE - 4E2FE...
我想知道是否有一种方法可以将 R 中的数据框/tibble 导出为 .xlsx 文件,并从 R 控制台本地添加突出显示和注释,而不是在 Excel 中进行后处理。 我...
由于目录不存在,无法将 df 保存到 Excel(但它存在)
我有一些数据框“数据”。当我想将其导出到 Excel 时,出现目录不存在的错误。但它确实存在。 path_file="C:/测试文件/test.xlsx" data.to_excel(拍...
我正在使用Closedxml来导出Excel.. 现在我可以使用以下功能保护(锁定单元格)单元格, workSheet.Cell(rowIndex,column).Style.Protection.SetLocked(true); 我想设置ce组...
我正在尝试使用 NPOI 库在 Visual Studio 2019 中使用 C# 生成 excel 文件(.xlsx)。我遇到了插入数据格式不正确的问题。 我有一个领域可以有...
当 loadonce 选项设置为 false 时,jqGrid 导出到 excel 的问题
我有一个 ASP.net MVC 解决方案并在其中使用 jqGrid。为了获得更好的性能,我使用 loadonce: false 作为选项,它应该是这样的,不幸的是 jqGrid 似乎不支持它
截断 Polars 中的字符串长度,使其不超过 Excel 字符限制
我目前能够将单个列的 str 值截断到低于 excel 字符限制(失败意味着使用 xlsxwriter 以下单元格为空白),但我希望这样做
从 html 表 React 中设置 excel 文件的样式
我正在使用 ReactJS 进行编码,我想要一个按钮,让我可以从页面下载 html 表格作为 Excel 表格。我做到了,但无论我尝试什么,我都无法向 Excel 添加样式,就像文本一样......
SSRS 2014 导出到 Excel (.xlsx) 导致 error191520_01.xml 和“尝试恢复”
我正在使用 Visual Studio 2022 修改现有报告,我所做的更改与样式(颜色、字体等)无关 该报告还部署了 Visual Studio 2022。 然后我将发布到 SSR...
如何将我的 google colab 笔记本导出到 Excel?
我在google colab中做了一些数据分析,现在我想将完成的表格导出到Excel中。它不允许我直接下载到我的下载(或其他文件夹)。我想这是因为我...
我在单元格中有一堆用逗号分隔的文本字符串(例如,在此处的 A 列中)。 A栏 B栏 AA,AB,AC ?? AC、AZ、BB ?? AB、BB、CD ?? 这些文本中的每一个都与值相关联...
大数据导出(作为配置包)在 Business Central 中表现出色
我正在尝试将大型配置包(457,000 行)从 Business Central(云)导出到 Excel。 配置包在表中的一个字段上包含一个过滤器 (<>0)。它
JasperReports 生成的 xls 文件中的颜色问题
我正在使用 Spring 和 iReport 生成 excel 格式的 jasper 报告。一切工作正常,但我有一个问题,iReport 中的报告背景颜色是灰色的,但我很...
Excel Range.BorderAround(),边框始终为黑色
这是我正在使用的代码: rngData.BorderAround(Excel.XlLineStyle.xl连续, Microsoft.Office.Interop.Excel.XlBorderWeight.xlThin, Microsoft.Office.Interop.Excel.XlColorIndex.
从GridView导出数据到Excelsheet时如何删除Excel表格中的分页文本?
我在asp.net应用程序中实现了导出到excel的功能。这里我将数据从网格视图导出到excel表。我还在网格视图中应用了分页。 所以当我将数据从网格视图导出到 Excel 时
我需要 Excel 的帮助来根据下拉选择显示数据。我有一张包含“姓名”和“性别”的表格。我该如何设置,以便当我选择“男性”或“女性”时...
codeigniter 导出到 Excel 在本地主机上运行良好,在服务器上出错
这是我的export_to_excel助手的代码: 函数export_to_excel($query, $filename='exceloutput') { $标题=''; // 只是创建要附加到下面的字段标题的 var $数据...
我的 Angular 项目中有 DHTMLX Spreadsheet v5.x。 我需要将更新的电子表格文件推送到服务器。 内置方法创建并自动下载 xlsx 文件。 让电子表格=新
这是我的web.php: 路线::post('/export_excel', 'PenyetoranController@exportExcel')->name('penyetoran.export-excel')->middleware('角色:BENDAHARA|SUPERVISOR'); 这是我的导出文件: 这是我的web.php: Route::post('/export_excel', 'PenyetoranController@exportExcel')->name('penyetoran.export-excel')->middleware('role:BENDAHARA|SUPERVISOR'); 这是我的导出文件: <?php namespace App\Exports; use App\GroupPasar; use Carbon\Carbon; use App\Users; use App\Pasar; use App\Penyetoran; use Maatwebsite\Excel\Concerns\FromCollection; use Maatwebsite\Excel\Concerns\WithHeadings; use Maatwebsite\Excel\Concerns\WithMapping; class PenyetoranExport implements FromCollection, WithHeadings, WithMapping { /** * @return \Illuminate\Support\Collection */ public function collection() { $startDate = request()->input('tgl_awal') ; $endDate = request()->input('tgl_akhir') ; if(request()->input('grup_pasar')!=null) { $groupId = request()->input('grup_pasar'); return GroupPasar::where('group_pasars.id', $groupId) ->join('pasar', 'pasar.grup_pasar', '=', 'group_pasars.id') ->join('penyetoran', function ($join){ $join->on('penyetoran.pasar', '=', 'pasar.id'); $join->where('status', 1); }) ->join('users', 'penyetoran.petugas', '=', 'users.id') ->whereBetween('penyetoran.tanggal_penyetoran', [$startDate, $endDate]) ->select('group_pasars.nama as nama_pasar','users.name as nama_petugas', 'penyetoran.jumlah_setoran','penyetoran.penyetoran_melalui','penyetoran.tanggal_penyetoran','penyetoran.tanggal_disetor') ->get(); } return Penyetoran::select('pasar','petugas','jumlah_setoran','penyetoran_melalui','tanggal_penyetoran','tanggal_disetor')->where('status',1) ->whereBetween('tanggal_penyetoran', [$startDate, $endDate])->get(); } public function map($penyetoran) : array { if(request()->input('grup_pasar')!=null){ return [ $penyetoran->nama_pasar, $penyetoran->nama_petugas, $penyetoran->jumlah_setoran, $penyetoran->penyetoran_melalui, Carbon::parse($penyetoran->tanggal_penyetoran)->toFormattedDateString(), Carbon::parse($penyetoran->tanggal_disetor)->toFormattedDateString(), ] ; } return [ $penyetoran->nama_pasar, $penyetoran->name, $penyetoran->jumlah_setoran, $penyetoran->penyetoran_melalui, Carbon::parse($penyetoran->tanggal_penyetoran)->toFormattedDateString(), Carbon::parse($penyetoran->tanggal_disetor)->toFormattedDateString(), ] ; } public function headings() : array { return [ 'Pasar', 'Petugas', 'Jumlah Setoran', 'Penyetoran Melalui', 'Tanggal Penyetoran', 'Tanggal Disetor', ] ; } } 这是我的控制器: public function exportExcel(Request $request) { $this->validate($request, [ 'tgl_awal' => 'required|date', 'tgl_akhir' => 'required|date|after:tgl_awal', ], [ 'tgl_awal.required' => 'Tanggal awal harus diisi', 'tgl_akhir.after' => 'Tanggal akhir yang dipilih harus sehari sesudah tanggal awal', 'tgl_akhir.required' => 'Tanggal akhir harus diisi', ]); return Excel::download(new PenyetoranExport, 'Daftar Penyetoran - '.date('d-m-Y').'.xlsx'); } 这是我的观点: {{-- <a class="btn btn-success" href="/penyetoran/export_excel" role="button" target="_blank">Export Excel<span class=""></a> --}} <form id="formExport" action="{{route('penyetoran.export-excel')}}" method="post" enctype="multipart/form-data"> {{ csrf_field() }} <div class="form-group row"> <label for="export" class="col-sm-1 col-form-label">Export</label> <div class="col-sm-3"> <input id="tgl_awal" name="tgl_awal" type="date" class="form-control @error('tgl_awal') is-invalid @enderror" value="{{ old('tgl_awal') }}"> @error('tgl_awal') <span class="invalid-feedback" role="alert"> <strong>{{ $message }}</strong> </span> @enderror </div> - <div class="col-sm-3"> <input id="tgl_akhir" name="tgl_akhir" type="date" class="form-control @error('tgl_akhir') is-invalid @enderror" value="{{ old('tgl_akhir') }}"> @error('tgl_akhir') <span class="invalid-feedback" role="alert"> <strong>{{ $message }}</strong> </span> @enderror </div> <div class="col-sm-2"> <input type="submit" class="btn btn-success" value="Export Excel"> </div>s </div> <div class="form-group row"> <label for="export" class="col-sm-1 col-form-label"></label> <div class="col-sm-3"> <select id="grup_pasar" name="grup_pasar" class="form-control"> <option value="">-- Pilih Grup Pasar --</option> @foreach($groups as $group) <option value="{{$group->id}}">{{$group->nama}}</option> @endforeach </select> <small class="text-muted">Pilih grup pasar untuk mencetak berdasarkan grup pasar</small> </div> </div> </form> 我需要重新导出吗?还是我使用它的方式有问题?请帮助我 这是错误: 路线 [penyetoran.export-excel] 未定义。 (查看:C:\xampp\htdocs\siappara_web_v2 资源 iews\penyetoran\indexLaporan.blade.php) 错误路线[penyetoran.export-excel]未定义 这很可能是您的路线被缓存的问题。 清除路由缓存。 php artisan route:clear 列出路线: php artisan route:list
Microsoft Office Excel 无法访问文件“c:\inetpub\wwwroot\Timesheet\App_Data\Template.xlsx”
我的代码如下:- Microsoft.Office.Interop.Excel.Application oXL = null; Microsoft.Office.Interop.Excel.Sheets 工作表; 应用程序 excel = 新的 Microsoft.Office.Interop.Excel.Application...