Questions tagged [column]
The column tag has no summary.
35 questions
0 votes
1 answer
45 views
Correct syntax to reference dynamic column name with SSJS Rows.Update() function
When the column name of a Data Extension is unknown and data needs to be written to that column what is the correct syntax as the following do not seem to work, Where e.num is some dynamic value like ...
1 vote
1 answer
996 views
Adding new custom column to Forecast Type in Forecasts
I haven't worked with forecasts before, but I'm required to add a new column to appear in one of our Quota tracking reports. The main fields of the report are Forecast Category and Quota amount, and ...
-1 votes
1 answer
1k views
Can I transpose columns to rows in a SFDC report?
If I dont have Einstein Analytics, and I want to report on a single object, and transpose few columns into rows, with rest of the fields repeating, is this possible in another method in the Out-of-the-...
0 votes
1 answer
5k views
Report and Dashboard - Show This Month vs This Month Last Year Next To Each Others Using Column Chart
I'm building a report to compare all months this year vs all months last year. Right now, the Column Chart only shows ascending order. Example: Jan 22, Feb 22, March 22,... Jan 23, Feb 23. I wonder if ...
1 vote
2 answers
5k views
How to make column as url hyperlink in datatable using lWC?
Column : CaseNumber / ContactID (lookup) I want to make them both as clickable link in <lightning-datatable Code : @wire(getAllCases, { lv0: '$listViewId' }) wiredOpps(result) { ...
0 votes
1 answer
235 views
Null Data in my columns
With this code I don't get any value , I get the column with the name but their are no value , I don't now what is the mistake . Some help please . public with sharing class Action { @AuraEnabled(...
1 vote
1 answer
649 views
How to format a number so that dot appears in the thousands?
I have a datatable defined as follows: <lightning:datatable data="{!v.mydata }" columns="{!v.mycolumns}" keyField="id" hideCheckboxColumn="true" ...
0 votes
1 answer
1k views
How to pass the data from from a lightning-datatable to a column
I have the following data as an array: this.finalSObjectDataListChild = sObjectRelatedFieldListValues; console.log(this.finalSObjectDataListChild); From an icon-button on the row I trigger an ...
3 votes
1 answer
17k views
How to make columns lwc lightning-datatable dynamic with button-icon
I have a lwc component with a lightning-datatable with the first column as a button-icon. This works when the columns are defined as a constant. Constant working const columns = [ { label: ...
2 votes
1 answer
2k views
How to get lightning combobox list appear on top when there is few rows in lightning Datatable?
My question is similar to this, I have a custom dropdown column which is appearing completely fine when we have many rows in the datatable. But in a sitation when we have a single record, it Lightning:...
1 vote
1 answer
445 views
PDF generation failed. Check the page markup is valid. Issue with datatable and columns tags
When rendering a visualforce page as PDF, I'm running into the error above often and have been unable to figure out what the error is. Through process of elimination, I have been able to narrow down ...
0 votes
1 answer
2k views
Unable to get the data in columns using lightning data table with imperative call and javascript
I am new to salesforce, I am trying to learn lightning datatable with imperative call in salesforce. I am unable to get the data in the column, its not throwing any error though. Please help to fix it....
1 vote
0 answers
1k views
Empty Column in Csv , when exporting data as csv using Lwc component
I'm very new to salesforce and lwc , i'm trying to Export some static and some dynamic data in a csv using LWC Salesforce and succeeded in that( except with a new column has been added from the ...
0 votes
1 answer
527 views
Preventing odd number of fields in lightning:recordForm from spanning 2 columns
dev noob here -- My company has been using this aura/lightning component on many of our lightning pages and it works very well. We borrowed the idea from the example in the link below. It's extremely ...
0 votes
0 answers
434 views
How to use "." in LWC datatable in a column of type number?
I noticed that is not possible to use a number like "12.6" in a cell of type "number" but is only accepted a number like "12,6". How can I allow the use of the "dot" character? Thanks, Luca