我很擅长工作。我想将Excel文件从第三方转换为格式。我不问整个代码,我想向你提出建议。例如,我需要什么功能或Excel中可以使用哪些功能。
A B C D E
1 Code category Bid Ask close
2 H2 IG9 15.92 16.8 17.6
3 H6 AP8 11.22 18.2 18.2
4 H3 CD5 12.34 22.1 34.2
5 ....
VBA脚本运行后。日期应按格式转换。
H2++^||IG9++^||15.92++^||16.8++^||17.6++^||
H6++^||AP8++^||11.22++^||18.2++^||18.2++^||
H3++^||CD5++^||12.34++^||22.1++^||34.2++^||
我期待着和你讨论。
答案 0 :(得分:0)
你可以使用Join()函数指定" ++ ^ ||"作为分隔符
type UserCommand struct {
User string
Info string
}
type ProductCommand struct {
Name string
Quanlity int
}