Given instance of a C1TrueDBGrid and cell location (row and column indexes), how can I determine if the cell is editable or readonly?
The query has already been taken care of on the C1Forums.
Regards,
Mohita
Related
I am trying to fill out cells in Google sheets based on another cell. That is, I have drop down list in column J and based on what I choose in that column, I need cells in column K to fill with a specific number. I tried conditional formatting, but that works for colours only, not values. I tried IF function, but this doesn´t work either:
Anyone has any ideas? Thanks a lot!
use in empty column in K2 cell:
=INDEX(IFNA(VLOOKUP(J2:J;
{"Cyklistické bundy"\ "2642";
"Dámske bundy"\ "1763";
"Pánske bundy"\ "1739"}; 2; 0)))
I'm trying to create a live quiz with results from a Google form. It inserts rows into my custom sheet, but one of the values which is a sum() of specific cells is ignored on insertion, is there a way to set the default value of a specific cell when a new row is inserted to the specific sum formula I require?
I have seen various examples but all are more complex than I need an I am unable to unpick them.
Is it also possible to specify a checkbox in a cell as well?
try:
={"TOTAL"; ARRAYFORMULA(IF(A9:A="",,MMULT(FILTER(D9:CE,
MOD(COLUMN(D9:CE)-1, 2)=0)*1, ROW(INDIRECT("A1:A"&COLUMNS(D:CE)/2))^0)))}
spreadsheet demo
Here is my workbook on Public Tableau, see below for percentage for each location, i.e. Barista - 57.14%.
How do I convert this to Calculated Field?
I wish to drag this Calculated Field to size of datapoint on a map, i.e.
You're using a Quick Table Calculation, which is like a calculated field built-in in the view. You can easily double-click on it and see what the calculation does. To achieve what you're looking for, you should create a new field with this calculation and then add it to the Size mark.
Here follows the formula:
SUM([Number of Records]) / TOTAL(SUM([Number of Records]))
How to get the formula from a field already in the view:
I've got a matrix that looks like this:
And I would like to hide the column with no data (i.e. second one for the date 21.05...).
I have tried applying expression "IsNothing" and '...Value = ""...' in Visibility field of the Column and of the Group.
How can i get it to hide the "empty" column?
Thank you in advance!
Write This Expression On Column Visibility Property Of Every Column.
=IIF(COUNT(Fields![ColumnName].Value) = Cint(0),TRUE,FALSE)
I want to change row and column definition index of a control in grid, like my textbox having index 2nd row and 3rd column in a grid now i want to move to 3rd row and 5th column so how to do this programmatically.
Grid.SetColumn(textBox, 5);
Grid.SetRow(textBox, 3);
Use Grid.SetRow and Grid.SetColumn, usually for attached properties such a static method exists on the owning type.