Excel 从 CSV 中获取不完整的行
Excel gets incomplete line from CSV
Excel 显示以下行不完整:
实际行:
"- Guides students through the new course and assessment structure with advice at the start of the book to help them understand what's required- Enables students to put their knowledge in context and helps them start analysing business data with case studies of real businesses included throughout- Prepares students for assessment with the 'Your turn' feature that contains practice questions including multiple choice, case study and data response, and those that test their quantitative skills"
Excel 显示不完整的行
- Guides students through the new course and assessment structure with advice at the start of the book to help them understand what's required- Enables students to put their knowledge in context and helps them start analysing business data with case studi
请帮忙
问候
克里斯
好吧,这显然是 Excel 中的一个错误。
因为文本有一个前导破折号 "-"
,Excel 首先尝试将其解析为限制为 255 个字符的数字,但当解析失败并切换回常规时,它从不将文本恢复到 32767 个字符的限制。
在 SuperUser 上查看此答案以获得更详尽的答案和解决方法。
解决方法是避免使用前导破折号。解决方法是在 CSV 导入器中将该列声明为“文本”而不是“常规”。
Excel 显示以下行不完整: 实际行:
"- Guides students through the new course and assessment structure with advice at the start of the book to help them understand what's required- Enables students to put their knowledge in context and helps them start analysing business data with case studies of real businesses included throughout- Prepares students for assessment with the 'Your turn' feature that contains practice questions including multiple choice, case study and data response, and those that test their quantitative skills"
Excel 显示不完整的行
- Guides students through the new course and assessment structure with advice at the start of the book to help them understand what's required- Enables students to put their knowledge in context and helps them start analysing business data with case studi
请帮忙
问候
克里斯
好吧,这显然是 Excel 中的一个错误。
因为文本有一个前导破折号 "-"
,Excel 首先尝试将其解析为限制为 255 个字符的数字,但当解析失败并切换回常规时,它从不将文本恢复到 32767 个字符的限制。
在 SuperUser 上查看此答案以获得更详尽的答案和解决方法。
解决方法是避免使用前导破折号。解决方法是在 CSV 导入器中将该列声明为“文本”而不是“常规”。