Tag:Unit Price
-
Time:2020-10-30
public partial class WeighRecord : Form { WeighRecordSet headsSet = null; public WeighRecord() { InitializeComponent(); this.RecordTimepx.Format = DateTimePickerFormat.Custom; this.RecordTimepx.CustomFormat = ” “; this.GrossTimepx.Format = DateTimePickerFormat.Custom; this.GrossTimepx.CustomFormat = ” “; this.TareTimepx.Format = DateTimePickerFormat.Custom; this.TareTimepx.CustomFormat = ” “; //Test data //var list = new List(); //list.Add(new WeighRecordDto() { Number = 1 }); //list.Add(new WeighRecordDto() { Number = […]
-
Time:2020-9-5
[example 1] find personal information =VLOOKUP($B18,$C$7:$H$15,COLUMN(B1),0) Note: the result of colum (B1) is 2. When the formula is copied to the right, 3, 4, 5,… Can be generated [example 2] merge two tables F2 cell formula=VLOOKUP(B2,$B$14:$F$22,MATCH(F$1,$B$13:$F$13,0)) Formula Description: use match function to find the position of Table 1 Title in Table 2 [example 3] make […]
-
Time:2020-6-18
Using in OracledecodeElegant row to column Recently, I finally met the application scenario of row to column conversion in my work. I took notes for myself to view and help people in need. In other relational databases, it is recommended to usecase when then endThis kind of bloated and complicated writing method has recently seen […]