问题标签 [customcolumn]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
44 浏览

excel - 比较列返回最大功率查询

我有来自多个供应商的数据,我想比较这些数据。下图中显示的数据之前已使用 power query 通过一系列步骤进行了转换。最后一步是旋转供应商列(在此示例中由 X、Y、Z 组成),以便可以比较这些新列并返回最大值。

在此处输入图像描述

如何比较 X、Y 和 Z 列中的值来执行此操作?重要的是,XY 和 Z 不一定是唯一的供应商。如果我将 Say A 添加为原始数据的新供应商,则会生成一个新列 A,我希望将其包含在比较中,以便在最后的列输出为每一行找到的最高值。因此,从上到下阅读在此示例中将显示为:3,3,1,1,5,0.04,10 等。

谢谢

链接到文件https://onedrive.live.com/?authkey=%21AE_6NgN3hnS6MpA&id=8BA0D02D4869CBCA%21763&cid=8BA0D02D4869CBCA

码:

0 投票
1 回答
787 浏览

php - WooCommerce 管理员订单列表自定义列,其中包含发送给客户的订单备注

我正在尝试创建一个向客户显示注释的列。我希望在 woocommerce 管理员和客户订单表中都有此列。我找到了这段代码,它显示了管理员中的所有注释。如何更改它以仅显示我写给客户的公共笔记?另外,如何更改它以在客户我的订单页面上显示?

0 投票
0 回答
20 浏览

php - 付费会员专业版:这是使自定义列排序的任何方法吗?

我正在尝试将自定义列添加到付费会员专业插件的成员列表中,并且我使用以下过滤器完成了这些事情:

  1. pmpro_manage_memberslist_columns:添加列。
  2. pmpro_manage_memberslist_custom_column:添加列体。

但现在我想创建一个“可排序”列Start DateEnd Date如果这些事情是可能的,请帮助我。

谢谢

0 投票
1 回答
104 浏览

excel - 请帮我解决我的 Excel Power Query / 自定义列错误

我正在尝试通过使用 Excel Power Query 创建老化桶分析。

到目前为止,我已经创建了一个列来计算每条记录的年龄。我目前正在进行的步骤是将每条记录分类到年龄桶中,例如“逾期 31-60 天”等。这是通过使用具有以下公式的自定义列来完成的:

=if [Payment Due Date] >180 then "over 180 days due" else if [Payment Due Date] <= 180 and [Payment Due Date] > 150 then "151-180 days overdue" else if [Payment Due Date] <= 150 and [Payment Due Date] > 120 then "121-150 days overdue" else if [Payment Due Date] <= 120 and [Payment Due Date] > 90 then "91-120 days overdue" else if [Payment Due Date] <= 90 and [Payment Due Date] > 60 then "61-90 days overdue" else if [Payment Due Date] <= 60 and [Payment Due Date] > 30 then "31-60 days overdue" else if [Payment Due Date] <= 30 and [Payment Due Date] > 0 then "1-30 days overdue" else if [Payment Due Date]<= 0 and [Payment Due Date] > -30 then "1-30 days overdue" else if [Payment Due Date] <= -30 and[Payment Due Date] and [Payment Due Date] > -60 then "31-60 days overdue" else if [Payment Due Date] <= -60 and [Payment Due Date] > -90 then "61-90 days overdue" else if [Payment Due Date] <= -90 and [Payment Due Date] > -120 then "91-120 days overdue" else if [Payment Due Date] <= -120 and [Payment Due Date] > -150 then "121-150 days overdue" else if [Payment Due Date] <= -150 and [Payment Due Date] > -180 then "151-180 days overdue" else if [Payment Due Date] <= -180 then "over 180 days overdue" else 0

但我收到以下错误:Expression.Error: *We cannot apply operator < to types Number and Date. Details: Operator=< Left=180 Right=5/3/2021* 这里有一些图片供您评估 错误消息 自定义列公式视图

0 投票
1 回答
34 浏览

powerbi - 有没有办法结合月份和年份并使用 PowerQuery 在单独的列转换中添加城市?

有没有办法使用 PowerQuery 实现这种转换?

输入表:

城市年 价值
伦敦
2016 年 一月 19
二月 20
行进 17
四月 20
2017 一月 19
二月 20
行进 17
四月 20
巴黎
2016 年 一月 19
二月 20
行进 17
四月 20
2017 一月 19
二月 20
行进 17
四月 20
罗马
2016 年 一月 19
二月 20
行进 17
四月 20
2017 一月 19
二月 20
行进 17
四月 20

输出:

城市 月/年 价值
伦敦 2016 年 1 月 19
伦敦 2016 年 2 月 20
伦敦 2016 年 3 月 17
伦敦 2016 年 4 月 20
伦敦 2017 年 1 月 19
伦敦 2017 年 2 月 20
伦敦 2017 年 3 月 17
伦敦 2017 年 4 月 20
巴黎 2016 年 1 月 19
巴黎 2016 年 2 月 20
巴黎 2016 年 3 月 17
巴黎 2016 年 4 月 20
巴黎 2017 年 1 月 19
巴黎 2017 年 2 月 20
巴黎 2017 年 3 月 17
巴黎 2017 年 4 月 20
罗马 2016 年 1 月 19
罗马 2016 年 2 月 20
罗马 2016 年 3 月 17
罗马 2016 年 4 月 20
罗马 2017 年 1 月 19
罗马 2017 年 2 月 20
罗马 2017 年 3 月 17
罗马 2017 年 4 月 20
0 投票
1 回答
70 浏览

vb.net - 保存的值未显示在自定义 datagridview 列中

所以我制作了一个自定义的 DataGridView-Column,它显示了一个下拉菜单,用于多选不同的值并用分隔符显示它们。

带有下拉列表和选定值的单元格图片

到目前为止它工作正常,但保存的值未显示在单元格中。选择它们后显示值工作正常,但重新加载后单元格为空。

我想我错过了一个初始化“Me.Value”的事件处理程序......

列类代码:

来自 CustomCell 的代码:

更新 我发现了问题。该值在绘画事件中被覆盖。完成错误修复后,我将更新代码。

0 投票
0 回答
11 浏览

customcolumn - PowerBi 自定义列

我正在尝试在某些条件下创建自定义值。如果原始列的值/字符串以数字字符结尾,则返回不带数字字符的字符串。所以如果是A2,则返回A。如果数字在字符串的中间(fe P2D),则返回P2D。我尝试使用以下内容创建自定义列(复制 excel 公式并调整到 DAX):

输出

这个公式不起作用。我得到“计数无法识别”等等。

甚至可以根据另一列的某些更改创建一个新列吗?

0 投票
0 回答
6 浏览

php - 如何在 wordpress 的 wpDatatables 插件中添加自定义列?

当我使用 wp-datatables 插件创建表时,我遇到了一个问题。我的要求是我想向它添加一个自定义列。这可能吗?