在Crystal Reports中拆分后显示日期

时间:2016-09-19 08:56:29

标签: date split crystal-reports report

如何在拆分后将这个日期在Crystal Reports中连接起来。

我有这个公式:

global numberVar d :=toNumber(mid({BAQReportParameter.Option01},4,2)); 
global numberVar m:= toNumber(left({BAQReportParameter.Option01},2));
global numberVar y:= toNumber(right({BAQReportParameter.Option01},4));
Global stringVar datetxt;  
datetext := ToText(d) + "/" + ToText(m) +"/" + ToText(y);

但它有错误。

1 个答案:

答案 0 :(得分:1)

    override func numberOfSectionsInTableView(tableView: UITableView) -> Int {

        return 2
    }

    override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

        switch section {
        case 0:
            return updates.count
        case 1:
            return updatesTask.count
        default:
            return 0
        }
    }    

    override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

        switch indexPath.section {
        case 0:
            let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as! updateTableViewCell
            let update = updates[indexPath.row]

            cell.nameLabel.text = update.addedByUser

            return cell
        case 1:
            let cell = tableView.dequeueReusableCellWithIdentifier("TaskCell", forIndexPath: indexPath) as! tasksTableViewCell
            let updateTask = updatesTask[indexPath.row]

            cell.nameLabel.text = updateTask.addedByUser

            return cell
        default:
            return UITableViewCell()
        }
    }

做这个简单的改变它会起作用!!